当前位置: 首页>>代码示例>>PHP>>正文


PHP ElggEntity::initializeAttributes方法代码示例

本文整理汇总了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;
 }
开发者ID:thehereward,项目名称:Elgg,代码行数:13,代码来源:ElggObject.php

示例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;
 }
开发者ID:portokallidis,项目名称:Metamorphosis-Meducator,代码行数:14,代码来源:ElggObject.php

示例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;
 }
开发者ID:sephiroth88,项目名称:Elgg,代码行数:13,代码来源:ElggGroup.php

示例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;
 }
开发者ID:redvabel,项目名称:Vabelgg,代码行数:17,代码来源:ElggSite.php

示例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;
 }
开发者ID:duanhv,项目名称:mdg-social,代码行数:23,代码来源:ElggUser.php

示例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;
 }
开发者ID:sephiroth88,项目名称:Elgg,代码行数:23,代码来源:ElggUser.php


注:本文中的ElggEntity::initializeAttributes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。