00001 <?php 00030 class HelperDestroyer implements DestroyerInterface 00031 { 00040 public static function execute($name, $params) 00041 { 00045 $file = APP_PATH . "helpers/$name.php"; 00046 00047 echo "\r\n-- Eliminando helper: $name\r\n$file\r\n"; 00048 00049 if(!unlink($file)) { 00050 throw new KumbiaException("No se ha logrado eliminar el archivo $file"); 00051 } 00052 00053 return true; 00054 } 00055 }