Esempio n. 1
0
 public function _cleanup()
 {
     parent::_cleanup();
     $dbh = $this->driver->getDbh();
     foreach ($this->scaffoldedBlogIds as $blogId) {
         $dropQuery = $this->tables->getBlogDropQuery($this->config['tablePrefix'], $blogId);
         $sth = $dbh->prepare($dropQuery);
         $this->debugSection('Query', $sth->queryString);
         $sth->execute();
     }
     $this->scaffoldedBlogIds = [];
     $this->blogId = 0;
 }
Esempio n. 2
0
 public function _cleanup()
 {
     parent::_cleanup();
     $this->blogId = 0;
 }