Where do I put my inflections in CakePHP 1.3? I am new to Cake

link|improve this question

50% accept rate
feedback

2 Answers

up vote 3 down vote accepted

inflections.php has been removed in CakePHP 1.3, I have taken a section out of the 1.3 migration guide which should explain:

Loading custom inflections

inflections.php has been removed, it was an unnecessary file hit, and the related features have been refactored into a method to increase their flexibility. You now use

Inflector::rules() to load custom inflections.
Inflector::rules('singular', array(
    'rules' => array('/^(bil)er$/i' => '\1', '/^(inflec|contribu)tors$/i' => '\1ta'),
    'uninflected' => array('singulars'),
    'irregular' => array('spins' => 'spinor')
));

Will merge the supplied rules into the infection sets, with the added rules taking precedence over the core rules.

Source

link|improve this answer
feedback

Its under /app/config/inflections.php.

link|improve this answer
Should it already be there? Because I don't see it. – PythonGem Feb 12 '10 at 2:16
2  
Sorry. Thought you were talking about CakePHP 1.2. In 1.3, you must define them in app/config/bootstrap.php using Inflector::rules(). – tr4656 Feb 12 '10 at 2:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.