Beispiel #1
0
 function uninstall()
 {
     $options_array = $this->load_options();
     $this->load_template_files($options_array['template']);
     $this->delete_references();
     parent::uninstall();
     return true;
 }
Beispiel #2
0
 function uninstall()
 {
     extract(tep_load('database', 'sessions'));
     $result = parent::uninstall();
     $db->query("delete from " . TABLE_SESSIONS . " where sesskey = '" . $db->filter($cSessions->id) . "'");
     return $result;
 }
Beispiel #3
0
 function uninstall()
 {
     $result = parent::uninstall();
     return $result;
 }