ElggSite::delete PHP 메소드

delete() 공개 메소드

Delete the site.
public delete ( ) : boolean
리턴 boolean
    public function delete()
    {
        global $CONFIG;
        if ($CONFIG->site->getGUID() == $this->guid) {
            throw new \SecurityException('You cannot delete the current site');
        }
        return parent::delete();
    }

Usage Example

예제 #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());
 }
All Usage Examples Of ElggSite::delete