當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ElggEntity::disable方法代碼示例

本文整理匯總了PHP中ElggEntity::disable方法的典型用法代碼示例。如果您正苦於以下問題:PHP ElggEntity::disable方法的具體用法?PHP ElggEntity::disable怎麽用?PHP ElggEntity::disable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ElggEntity的用法示例。


在下文中一共展示了ElggEntity::disable方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: 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

示例2: testDisableBeforeSaved

 public function testDisableBeforeSaved()
 {
     // false on disable because it's not saved yet.
     $this->assertFalse($this->obj->disable());
 }
開發者ID:ibou77,項目名稱:elgg,代碼行數:5,代碼來源:ElggEntityTest.php

示例3: disable

 /**
  * Disable the site
  *
  * @note You cannot disable the current site.
  *
  * @param string $reason Optional reason for disabling
  *
  * @return bool
  * @throws SecurityException
  */
 public function disable($reason = "")
 {
     global $CONFIG;
     if ($CONFIG->site->getGUID() == $this->guid) {
         throw new SecurityException('SecurityException:deletedisablecurrentsite');
     }
     return parent::disable($reason);
 }
開發者ID:redvabel,項目名稱:Vabelgg,代碼行數:18,代碼來源:ElggSite.php

示例4: disable

 /**
  * Disable the site
  *
  * @note You cannot disable the current site.
  *
  * @param string $reason    Optional reason for disabling
  * @param bool   $recursive Recursively disable all contained entities?
  *
  * @return bool
  * @throws SecurityException
  */
 public function disable($reason = "", $recursive = true)
 {
     global $CONFIG;
     if ($CONFIG->site->getGUID() == $this->guid) {
         throw new \SecurityException('You cannot disable the current site');
     }
     return parent::disable($reason, $recursive);
 }
開發者ID:Twizanex,項目名稱:GuildWoW,代碼行數:19,代碼來源:ElggSite.php


注:本文中的ElggEntity::disable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。