LoginSignup
4
4

More than 5 years have passed since last update.

【Cake】名称の規約

Posted at

良く忘れるのでメモ

テーブル

複数形でアンダースコア
例)
people 、 big_people 、 really_big_people

モデル

単数形でキャメル記法
例)
Person、BigPerson、ReallyBigPerson

自分の場合、単数形と複数形の変換はわかりづらいので、フィールドにモデル名とテーブル名を定義している。
※これは問題を隠すだけなので良くないのかもしれない。

$name = 'MlList';//モデル名
$useTable= 'ml_lists';//使用するテーブル

コントローラ

複数形でキャメル記法で、最後に Controllerが付く
例)
PeopleController、BigPeople、Controller

参考:http://book.cakephp.org/2.0/ja/getting-started/cakephp-conventions.html

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4