Beispiel #1
0
 /**
  * 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;
 }
Beispiel #2
0
 /**
  * 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;
 }
Beispiel #3
0
 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());
 }