本文整理匯總了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();
}