本文整理汇总了PHP中CPAC_Column::set_properties方法的典型用法代码示例。如果您正苦于以下问题:PHP CPAC_Column::set_properties方法的具体用法?PHP CPAC_Column::set_properties怎么用?PHP CPAC_Column::set_properties使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CPAC_Column
的用法示例。
在下文中一共展示了CPAC_Column::set_properties方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: create_column_instance
/**
* @since 2.0
* @param $column_name
* @param $label
* @return object CPAC_Column
*/
public function create_column_instance($column_name, $label)
{
// create column instance
$column = new CPAC_Column($this);
$column->set_properties('type', $column_name)->set_properties('name', $column_name)->set_properties('label', $label)->set_properties('is_cloneable', false)->set_properties('default', true)->set_properties('group', 'default')->set_options('label', $label)->set_options('state', 'on');
// Hide Label when it contains HTML elements
if (strlen($label) != strlen(strip_tags($label))) {
$column->set_properties('hide_label', true);
}
// Label empty? Use it's column_name
if (!$label) {
$column->set_properties('label', ucfirst($column_name));
}
return $column;
}
示例2: create_column_instance
/**
* @since 2.0
* @param $column_name
* @param $label
* @return object CPAC_Column
*/
public function create_column_instance($column_name, $label)
{
// create column instance
$column = new CPAC_Column($this);
$column->set_properties('type', $column_name)->set_properties('name', $column_name)->set_properties('label', $label)->set_properties('is_cloneable', false)->set_properties('default', true)->set_properties('group', 'plugin')->set_options('label', $label)->set_options('state', 'on');
// Hide Label when it contains HTML elements
if (strlen($label) != strlen(strip_tags($label))) {
$column->set_properties('hide_label', true);
}
// Label empty? Use it's column_name
if (!$label) {
$column->set_properties('label', ucfirst($column_name));
}
/**
* Filter the default column names
*
* @since 2.4.4
*
* @param array $default_column_names Default column names
* @param object $column Column object
* @param object $this Storage_Model object
*/
$default_column_names = apply_filters('cac/columns/defaults', $this->get_default_column_names(), $column, $this);
$default_column_names = apply_filters('cac/columns/defaults/type=' . $this->get_type(), $default_column_names, $column, $this);
$default_column_names = apply_filters('cac/columns/defaults/post_type=' . $this->get_post_type(), $default_column_names, $column, $this);
// set group for WP Default
if ($default_column_names && in_array($column_name, $default_column_names)) {
$column->set_properties('group', 'default');
}
return $column;
}