mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
68b194965e
Author: phpnut Date: 8:52:12 PM, Sunday, October 23, 2005 Message: adding cakephp power image [1177] Author: phpnut Date: 8:48:32 PM, Sunday, October 23, 2005 Message: Updated scaffold to use new layout template. [1176] Author: phpnut Date: 7:09:27 PM, Sunday, October 23, 2005 Message: renaming cake/conf to cake/config [1175] Author: phpnut Date: 7:06:04 PM, Sunday, October 23, 2005 Message: moving tags.ini.php to cake/conf/tags.ini.php [1174] Author: phpnut Date: 6:52:19 PM, Sunday, October 23, 2005 Message: updating css/cake.scaffold.css [1173] Author: phpnut Date: 6:46:07 PM, Sunday, October 23, 2005 Message: updating css/cake.deafult.css and default layout [1172] Author: phpnut Date: 6:42:48 PM, Sunday, October 23, 2005 Message: updating css/cake.scaffold.css [1171] Author: phpnut Date: 6:41:00 PM, Sunday, October 23, 2005 Message: Adding spaces to tags.ini file [1170] Author: phpnut Date: 6:37:17 PM, Sunday, October 23, 2005 Message: Removing code that is no longer used [1169] Author: phpnut Date: 6:34:24 PM, Sunday, October 23, 2005 Message: removing files that are no longer used [1168] Author: phpnut Date: 6:19:46 PM, Sunday, October 23, 2005 Message: Cleaning up Scaffold class. [1167] Author: phpnut Date: 5:26:27 PM, Sunday, October 23, 2005 Message: Changes are added to remove the $this->models array that would hold the instance of the models. Now they are available as $this->ModelName; This should be CamelCased. Added check in the Scaffold to return forms when accessing the actions update, create without a form being submitted. [1166] Author: phpnut Date: 3:53:08 PM, Sunday, October 23, 2005 Message: Making change to allow setting the name of a class camel cased to fix issues with PHP 4. In both the model and the controllers: Model: var $name = 'ModelName'; Controller: var $name = 'ControllerName'; ControllerName not ControllerNameController. [1165] Author: phpnut Date: 1:45:17 PM, Sunday, October 23, 2005 Message: Fix added for problems with key name that was added to the class registry when underscored git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1179 3807eeeb-6ff5-0310-8944-8be069107fe0
101 lines
No EOL
3.2 KiB
PHP
101 lines
No EOL
3.2 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
* Short description for file.
|
|
*
|
|
* Long description for file
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright (c) 2005, CakePHP Authors/Developers
|
|
*
|
|
* Author(s): Michal Tatarynowicz aka Pies <tatarynowicz@gmail.com>
|
|
* Larry E. Masters aka PhpNut <nut@phpnut.com>
|
|
* Kamil Dzielinski aka Brego <brego.dk@gmail.com>
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @author CakePHP Authors/Developers
|
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
|
* @package cake
|
|
* @subpackage cake.cake.config.inflections
|
|
* @since CakePHP v .0.10.x.x
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
|
|
$pluralUninflectedHerd = array(
|
|
# DON'T INFLECT IN CLASSICAL MODE, OTHERWISE NORMAL INFLECTION
|
|
'wildebeest', 'swine', 'eland', 'bison', 'buffalo','elk', 'moose', 'rhinoceros',);
|
|
|
|
$pluralUninflecteds =array(
|
|
# PAIRS OR GROUPS SUBSUMED TO A SINGULAR...
|
|
'breeches', 'britches', 'clippers', 'gallows', 'hijinks',
|
|
'headquarters', 'pliers', 'scissors', 'testes', 'herpes',
|
|
'pincers', 'shears', 'proceedings', 'trousers',
|
|
# UNASSIMILATED LATIN 4th DECLENSION
|
|
'cantus', 'coitus', 'nexus',
|
|
# RECENT IMPORTS...
|
|
'contretemps', 'corps', 'debris',
|
|
'.*ois', 'siemens',
|
|
# DISEASES
|
|
'.*measles', 'mumps',
|
|
# MISCELLANEOUS OTHERS...
|
|
'diabetes', 'jackanapes', 'series', 'species', 'rabies',
|
|
'chassis', 'innings', 'news', 'mews',);
|
|
|
|
$pluralUninflected = array(
|
|
# SOME FISH AND HERD ANIMALS
|
|
'.*fish', 'tuna', 'salmon', 'mackerel', 'trout',
|
|
'bream', 'sea[- ]bass', 'carp', 'cod', 'flounder', 'whiting',
|
|
'.*deer', '.*sheep',
|
|
# ALL NATIONALS ENDING IN -ese
|
|
'Portuguese', 'Amoyese', 'Borghese', 'Congoese', 'Faroese',
|
|
'Foochowese', 'Genevese', 'Genoese', 'Gilbertese', 'Hottentotese',
|
|
'Kiplingese', 'Kongoese', 'Lucchese', 'Maltese', 'Nankingese',
|
|
'Niasese', 'Pekingese', 'Piedmontese', 'Pistoiese', 'Sarawakese',
|
|
'Shavese', 'Vermontese', 'Wenchowese', 'Yengeese',
|
|
'.*[nrlm]ese',
|
|
# DISEASES
|
|
'.*pox',
|
|
# OTHER ODDITIES
|
|
'graffiti', 'djinn');
|
|
|
|
$pluralIrregulars = array(
|
|
'corpus' => 'corpuses|corpora',
|
|
'opus' => 'opuses|opera',
|
|
'genus' => 'genera',
|
|
'mythos' => 'mythoi',
|
|
'penis' => 'penises|penes',
|
|
'testis' => 'testes',
|
|
'atlas' => 'atlases|atlantes',);
|
|
|
|
$pluralIrregular =array(
|
|
'child' => 'children',
|
|
'brother' => 'brothers|brethren',
|
|
'loaf' => 'loaves',
|
|
'hoof' => 'hoofs|hooves',
|
|
'beef' => 'beefs|beeves',
|
|
'money' => 'monies',
|
|
'mongoose' => 'mongooses|',
|
|
'ox' => 'oxen',
|
|
'cow' => 'cows|kine',
|
|
'soliloquy' => 'soliloquies|',
|
|
'graffito' => 'graffiti',
|
|
'prima donna' => 'prima donnas|prime donne',
|
|
'octopus' => 'octopuses|octopodes',
|
|
'genie' => 'genies|genii',
|
|
'ganglion' => 'ganglions|ganglia',
|
|
'trilby' => 'trilbys',
|
|
'turf' => 'turfs|turves',
|
|
'numen' => 'numina',
|
|
'occiput' => 'occiputs|occipita',);
|
|
|
|
?>
|