tutida/reject-upper-case

reject-upper-case 是 CakePHP 的插件

安装: 11

依赖: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

开放问题: 0

类型:cakephp-plugin

v0.0.2 2015-06-25 08:17 UTC

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'
    ];