tutida / reject-upper-case
reject-upper-case 是 CakePHP 的插件
v0.0.2
2015-06-25 08:17 UTC
Requires
This package is auto-updated.
Last update: 2024-08-28 12:53:14 UTC
README
此插件拒绝使用控制器和操作名称中的大写字母地址。
ex)
// this is ok url: ...../topics/index
this->Html->link(['controller' => 'topics','action' => 'index']);
// this is rejected url: ...../Topics/Index
this->Html->link(['controller' => 'Topics','action' => 'Index']);
如何使用
<?php
App::uses('Controller', 'Controller');
class AppController extends Controller
{
public $components = [
'RejectUpperCase.RejectUpperCase'
];