예제 #1
0
 public function uninstall()
 {
     parent::uninstall();
     //Remove our table data
     $db = Loader::db();
     $db->execute("DROP TABLE pkgNewsletterEmails");
 }
예제 #2
0
 public function uninstall()
 {
     $paypal = PaymentMethod::getByHandle('paypal_express');
     if (is_object($paypal)) {
         $paypal->delete();
     }
     parent::uninstall();
 }
예제 #3
0
 public function uninstall(Package $p)
 {
     $p->uninstall();
     $config = $this->entityManager->getConfiguration();
     $cache = $config->getMetadataCacheImpl();
     $cache->flushAll();
 }
예제 #4
0
 public function uninstall()
 {
     parent::uninstall();
     $db = Loader::db();
     $db->Execute('DROP TABLE IF EXISTS btLoginDialog');
 }
예제 #5
0
 /**
  * Uninstalls the package. Removes any blocks, themes, or pages associated with the package.
  */
 public function uninstall()
 {
     return parent::uninstall();
 }
 public function uninstall()
 {
     parent::uninstall();
     $db = \Database::get();
     $db->query("drop table TutorialDbTableDemoAttribute");
 }