コード例 #1
0
ファイル: actions.php プロジェクト: soundintheory/fuel-cmf
 /**
  * Remove old and broken URL entries
  */
 public function action_clean_urls()
 {
     $deleted = \CMF\Model\URL::cleanOld();
     echo \Lang::get('admin.messages.num_type_deleted', array('num' => $deleted, 'type' => strtolower(\CMF\Model\URL::plural())));
     exit;
 }