Skip to content

Instantly share code, notes, and snippets.

@fitorec
Last active June 23, 2016 14:53
Show Gist options
  • Select an option

  • Save fitorec/ff635ff4547bb7b52f1c58f4f3732cb3 to your computer and use it in GitHub Desktop.

Select an option

Save fitorec/ff635ff4547bb7b52f1c58f4f3732cb3 to your computer and use it in GitHub Desktop.
<?php
# poner en el archivo app/Config/boostrap.php
Inflector::rules('singular', array(
'rules' => array(
'/([rlnd])es$/i' => '\1',
'/([taeiouj])s$/i' => '\1',
),
'irregular' => array(
'sessiones', 'session',
'useres' => 'user',
'models' => 'model',
'controllers' => 'controller',
)
));
Inflector::rules('plural', array(
'rules' => array(
'/([taeiouj])$/i' => '\1s',
'/([rlnd])$/i' => '\1es',
),
'irregular' => array(
'user' => 'users',
'model' => 'models',
'controller' => 'controllers',
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment