remove ajax from controller

This commit is contained in:
mitalcoi
2014-06-12 00:46:36 +04:00
parent fd43d3e063
commit 062d78428b

View File

@@ -8,7 +8,6 @@
namespace yii\gii\controllers; namespace yii\gii\controllers;
use Yii; use Yii;
use yii\helpers\Inflector;
use yii\web\Controller; use yii\web\Controller;
use yii\web\NotFoundHttpException; use yii\web\NotFoundHttpException;
@@ -127,12 +126,4 @@ class DefaultController extends Controller
throw new NotFoundHttpException("Code generator not found: $id"); throw new NotFoundHttpException("Code generator not found: $id");
} }
} }
/**
* @param string $tableName
* @return string
*/
public function actionClassify($tableName){
return Inflector::classify($tableName);
}
} }