/**
  * Uninstall the plugin.
  */
 public function hookUninstall()
 {
     $db = get_db();
     # Drop the table
     $sql = "DROP TABLE IF EXISTS `{$db->DateSearchDates}`";
     $db->query($sql);
     SELF::_uninstallOptions();
 }
 /**
  * Uninstall the plugin.
  */
 public function hookUninstall()
 {
     SELF::_uninstallOptions();
 }