Esempio n. 1
0
 /**
  * Removes plugin entry in DB.
  *
  * @param integer $id
  */
 public function deletePluginById($id)
 {
     $this->pluginDao->deleteById($id);
     $this->pluginDaoCache = $this->pluginDao->findAll();
 }
Esempio n. 2
0
 /**
  * Removes plugin entry in DB.
  *
  * @param integer $id
  */
 public function deletePluginById($id)
 {
     $this->pluginDao->deleteById($id);
     $this->updatePluginListCache();
 }