开发者

Cakephp controller name

开发者 https://www.devze.com 2023-02-06 03:17 出处:网络
i m new to cakephp. i have stuck in one place the problem is table name - india_tends controller - tends

i m new to cakephp. i have stuck in one place the problem is

table name - india_tends

controller - tends

model name - india_tends

The problem is that cake php not allow tends to controller name its show that i h开发者_Python百科ave to use india_tends.. so any way to give tends to controller name?


use the variable $useTable="india_tends" and $name="tends" in model


If your table name is india_tends, then your controller code should be in the file india_tends_controller.php, and the class name should be IndiaTendsController.

In your case I think you want the IndiaTendsController to be accessible through /tends/:actions so the best guess would be using routing.

Edit your config/routes.php to have the following code:

Router::connect('/tends/*', array('controller' => 'india_tends'));

And you can have it accessible through /tends/*


Which version of CakePHP are you using? You could use routing.

0

精彩评论

暂无评论...
验证码 换一张
取 消