本文整理匯總了PHP中Gdn_Model::SetField方法的典型用法代碼示例。如果您正苦於以下問題:PHP Gdn_Model::SetField方法的具體用法?PHP Gdn_Model::SetField怎麽用?PHP Gdn_Model::SetField使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Gdn_Model
的用法示例。
在下文中一共展示了Gdn_Model::SetField方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Sort
/**
* Set the sort order for data on an arbitrary database table.
*
* Expect post values TransientKey, Target (redirect URL), Table (database table name),
* and TableID (an array of sort order => unique ID).
*
* @since 2.0.0
* @access public
*/
public function Sort()
{
$this->Permission('Garden.Settings.Manage');
if (Gdn::Request()->IsAuthenticatedPostBack()) {
$TableID = Gdn::Request()->Post('TableID');
if ($TableID) {
$Rows = Gdn::Request()->Post($TableID);
if (is_array($Rows)) {
$Table = str_replace(array('Table', '`'), '', $TableID);
$ModelName = $Table . 'Model';
if (class_exists($ModelName)) {
$TableModel = new $ModelName();
} else {
$TableModel = new Gdn_Model($Table);
}
foreach ($Rows as $Sort => $ID) {
if (strpos($ID, '_') !== false) {
list(, $ID) = explode('_', $ID, 2);
}
if (!$ID) {
continue;
}
$TableModel->SetField($ID, 'Sort', $Sort);
}
$this->SetData('Result', true);
}
}
}
$this->Render('Blank');
}