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