LoginSignup
1
1

More than 5 years have passed since last update.

CakePHP input typeの自動設定

Posted at

_magicOptions

CakePHP 2.4.5だと /Cake/View/Helper/FormHelper.php L1137

このfunctionを見ればどこまで動的にinputタグを生成してくれているかがわかる。

使っていて一番便利だと思ったのは、テーブルのカラム名のsuffixを_idとすること。

こうすることでViewを表示するとselect boxができあがっている。

よって、DBもCakePHPを使うとなれば命名規約も先に整理するのがベスト。

よく使うメモ

カラム名 type
(xxx)_id - select
- boolean checkbox
- date 月-日-年
- text textarea
'psword' or 'passwd' or 'password' - password
'tel' or 'telephone' or 'phone' - tel
1
1
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
1
1