本文整理汇总了PHP中ElggEntity::initializeAttributes方法的典型用法代码示例。如果您正苦于以下问题:PHP ElggEntity::initializeAttributes方法的具体用法?PHP ElggEntity::initializeAttributes怎么用?PHP ElggEntity::initializeAttributes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ElggEntity
的用法示例。
在下文中一共展示了ElggEntity::initializeAttributes方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initializeAttributes
/**
* Initialize the attributes array to include the type,
* title, and description.
*
* @return void
*/
protected function initializeAttributes()
{
parent::initializeAttributes();
$this->attributes['type'] = "object";
$this->attributes += self::getExternalAttributes();
$this->tables_split = 2;
}
示例2: initializeAttributes
/**
* Initialise the attributes array to include the type,
* title, and description.
*
* @return void
*/
protected function initializeAttributes()
{
parent::initializeAttributes();
$this->attributes['type'] = "object";
$this->attributes['title'] = NULL;
$this->attributes['description'] = NULL;
$this->attributes['tables_split'] = 2;
}
示例3: initializeAttributes
/**
* Sets the type to group.
*
* @return void
*/
protected function initializeAttributes()
{
parent::initializeAttributes();
$this->attributes['type'] = "group";
$this->attributes['name'] = null;
$this->attributes['description'] = null;
$this->tables_split = 2;
}
示例4: initializeAttributes
/**
* Initialise the attributes array.
* This is vital to distinguish between metadata and base parameters.
*
* Place your base parameters here.
*
* @return void
*/
protected function initializeAttributes()
{
parent::initializeAttributes();
$this->attributes['type'] = "site";
$this->attributes['name'] = NULL;
$this->attributes['description'] = NULL;
$this->attributes['url'] = NULL;
$this->attributes['tables_split'] = 2;
}
示例5: initializeAttributes
/**
* Initialise the attributes array.
* This is vital to distinguish between metadata and base parameters.
*
* Place your base parameters here.
*
* @return void
*/
protected function initializeAttributes()
{
parent::initializeAttributes();
$this->attributes['type'] = "user";
$this->attributes['name'] = NULL;
$this->attributes['username'] = NULL;
$this->attributes['password'] = NULL;
$this->attributes['salt'] = NULL;
$this->attributes['email'] = NULL;
$this->attributes['language'] = NULL;
$this->attributes['code'] = NULL;
$this->attributes['banned'] = "no";
$this->attributes['admin'] = 'no';
$this->attributes['tables_split'] = 2;
}
示例6: initializeAttributes
/**
* Initialize the attributes array.
* This is vital to distinguish between metadata and base attributes.
*
* @return void
*/
protected function initializeAttributes()
{
parent::initializeAttributes();
$this->attributes['type'] = "user";
$this->attributes['name'] = null;
$this->attributes['username'] = null;
$this->attributes['password'] = null;
$this->attributes['salt'] = null;
$this->attributes['email'] = null;
$this->attributes['language'] = null;
$this->attributes['banned'] = "no";
$this->attributes['admin'] = 'no';
$this->attributes['prev_last_action'] = null;
$this->attributes['last_login'] = null;
$this->attributes['prev_last_login'] = null;
$this->tables_split = 2;
}