本文整理汇总了PHP中Tbl::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Tbl::__construct方法的具体用法?PHP Tbl::__construct怎么用?PHP Tbl::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tbl
的用法示例。
在下文中一共展示了Tbl::__construct方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Construct
*
* @param string $name
*/
public function __construct()
{
$this->_columns = array('id', 'segment', 'name', 'content_type');
$this->_unchangeable = array('id');
parent::__construct();
}
示例2: __construct
/**
* Construct
*
* @param string $name
*/
public function __construct()
{
$this->_columns = array('id', 'division_id', 'segment', 'name', 'order');
$this->_unchangeable = array('id');
parent::__construct();
}
示例3: __construct
/**
* Construct
*
* @param string $name
*/
public function __construct()
{
$this->_columns = array('id', 'segment', 'name', 'description', 'receive_subject', 'receive_email_type', 'user_name_field', 'user_address_field', 'confirm_subject', 'confirm_email_type', 'admin_name', 'admin_address');
$this->_unchangeable = array('id');
parent::__construct();
}
示例4: __construct
/**
* Construct
*
* @param string $name
*/
public function __construct()
{
$this->_columns = array('id', 'email_id', 'field', 'callback', 'param', 'label');
$this->_unchangeable = array('id');
parent::__construct();
}
示例5: __construct
/**
* Construct
*
* @param string $name
*/
public function __construct()
{
$this->_columns = array('id', 'item_id', 'category_id');
$this->_unchangeable = array('id');
parent::__construct();
}
示例6: __construct
/**
* Construct
*
* @param string $name
*/
public function __construct()
{
$this->_columns = array('id', 'item_id', 'user_id', 'replay_id', 'display_name', 'subject', 'content', 'created', 'is_accept');
$this->_unchangeable = array('id');
parent::__construct();
}
示例7: __construct
/**
* Construct
*
* @param string $name
*/
public function __construct()
{
$this->_columns = array('id', 'division_id', 'shape_segment', 'image_id', 'user_id', 'parent_id', 'segment', 'title', 'catch', 'keywords', 'description', 'summary', 'order', 'is_active', 'issued', 'created', 'send_comment_is_on');
$this->_unchangeable = array('id');
parent::__construct();
}
示例8: __construct
/**
* Construct
*
* @param string $name
*/
public function __construct()
{
$this->_columns = array('id', 'item_id', 'segment', 'ext', 'name', 'description', 'order');
$this->_unchangeable = array('id');
parent::__construct();
}