本文整理汇总了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());
}
示例2: testDisableBeforeSaved
public function testDisableBeforeSaved()
{
// false on disable because it's not saved yet.
$this->assertFalse($this->obj->disable());
}
示例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);
}
示例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);
}