本文整理汇总了PHP中FieldManager::add方法的典型用法代码示例。如果您正苦于以下问题:PHP FieldManager::add方法的具体用法?PHP FieldManager::add怎么用?PHP FieldManager::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FieldManager
的用法示例。
在下文中一共展示了FieldManager::add方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: commit
/**
* Commit the settings of this field from the section editor to
* create an instance of this field in a section.
*
* @return boolean
* true if the commit was successful, false otherwise.
*/
public function commit()
{
$fields = array();
$fields['label'] = General::sanitize($this->get('label'));
$fields['element_name'] = $this->get('element_name') ? $this->get('element_name') : Lang::createHandle($this->get('label'));
$fields['parent_section'] = $this->get('parent_section');
$fields['location'] = $this->get('location');
$fields['required'] = $this->get('required');
$fields['type'] = $this->_handle;
$fields['show_column'] = $this->get('show_column');
$fields['sortorder'] = (string) $this->get('sortorder');
if ($id = $this->get('id')) {
return FieldManager::edit($id, $fields);
} else {
if ($id = FieldManager::add($fields)) {
$this->set('id', $id);
$this->createTable();
return true;
}
}
return false;
}