Last active
August 29, 2015 14:08
-
-
Save tuliofaria/56f14a7b92b19a9dc2d6 to your computer and use it in GitHub Desktop.
CakePHP: exemplo do useTable ( http://www.tuliofaria.net/dica-pluralizacao-no-model-do-cakephp-sem-criar-novas-regras/ )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Extensao extends AppModel{ | |
public $useTable = "extensoes"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ExtensoesController extends AppController{ | |
public $uses = array("Extensao"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment