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


PHP ElggObject::enable方法代码示例

本文整理汇总了PHP中ElggObject::enable方法的典型用法代码示例。如果您正苦于以下问题:PHP ElggObject::enable方法的具体用法?PHP ElggObject::enable怎么用?PHP ElggObject::enable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ElggObject的用法示例。


在下文中一共展示了ElggObject::enable方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: enable

 /**
  * Also activate the api_user when enabling the API application
  *
  * @return boolean
  *
  * @see ElggEntity::enable()
  */
 function enable()
 {
     $result = parent::enable();
     if (isset($this->api_user_id)) {
         ws_pack_activate_api_user_from_id($this->api_user_id);
     }
     return $result;
 }
开发者ID:lorea,项目名称:Hydra-dev,代码行数:15,代码来源:APIApplication.php

示例2: enable

 /**
  * Also activate the api_user when enabling the API application
  *
  * @param bool $recursive Recursively enable all entities disabled with the entity?
  *
  * @return bool
  *
  * @see ElggEntity::enable()
  */
 public function enable($recursive = true)
 {
     $result = parent::enable($recursive);
     if (isset($this->api_user_id)) {
         ws_pack_activate_api_user_from_id($this->api_user_id);
     }
     return $result;
 }
开发者ID:coldtrick,项目名称:ws_pack,代码行数:17,代码来源:APIApplication.php

示例3: testElggEntityRecursiveDisableAndEnable

 public function testElggEntityRecursiveDisableAndEnable()
 {
     global $CONFIG;
     $obj1 = new \ElggObject();
     $obj1->container_guid = $this->entity->getGUID();
     $obj1->save();
     $obj2 = new \ElggObject();
     $obj2->container_guid = $this->entity->getGUID();
     $obj2->save();
     // disable $obj2 before disabling the container
     $this->assertTrue($obj2->disable());
     // disable entities container by $this->entity
     $this->assertTrue($this->entity->disable());
     $entity = get_data_row("SELECT * FROM {$CONFIG->dbprefix}entities WHERE guid = '{$obj1->guid}'");
     $this->assertIdentical($entity->enabled, 'no');
     // enable entities that were disabled with the container (but not $obj2)
     $this->assertTrue($this->entity->enable());
     $entity = get_data_row("SELECT * FROM {$CONFIG->dbprefix}entities WHERE guid = '{$obj1->guid}'");
     $this->assertIdentical($entity->enabled, 'yes');
     $entity = get_data_row("SELECT * FROM {$CONFIG->dbprefix}entities WHERE guid = '{$obj2->guid}'");
     $this->assertIdentical($entity->enabled, 'no');
     // cleanup
     $this->assertTrue($obj2->enable());
     $this->assertTrue($obj2->delete());
     $this->assertTrue($obj1->delete());
 }
开发者ID:Twizanex,项目名称:GuildWoW,代码行数:26,代码来源:ElggEntityTest.php


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