tutida/reject-upper-case

reject-upper-case plugin for CakePHP

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

This package is auto-updated.

Last update: 2024-04-28 12:06:28 UTC


README

This plugin reject addresses used uppercase in name of controller and action.

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

How to use

<?php

App::uses('Controller', 'Controller');

class AppController extends Controller
{
    public $components = [
        'RejectUpperCase.RejectUpperCase'
    ];