delete() 공개 메소드

Delete the site.
public delete ( ) : boolean
리턴 boolean
예제 #1
0
파일: ElggSiteTest.php 프로젝트: elgg/elgg
 public function testElggSiteSaveAndDelete()
 {
     $guid = $this->site->save();
     $this->assertIsA($guid, 'int');
     $this->assertTrue($guid > 0);
     $this->assertIdentical(true, $this->site->delete());
 }
예제 #2
0
 public function delete()
 {
     if ($acl = $this->getACL()) {
         delete_access_collection($acl);
     }
     if ($this->icontime) {
         $this->removeIcon();
     }
     return parent::delete();
 }