ElggSite::delete PHP Méthode

delete() public méthode

Delete the site.
public delete ( ) : boolean
Résultat 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

Exemple #1
0
 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