WHAT'S NEW?
Loading...

CakePHP2.0のコンソールを使ってラクラク自動生成しよう【2/2】

■前回の続き

前回はデータベーススキーマに関するコンソール操作を説明したんだけど、なかなか興味深い内容だったと思う。

今回はいわゆるBake(ベイク)を使ってみる予定。
BakeというのはCakePHPというケーキを美味しく焼きあげるために用意された、いわばCakePHPのユーザランドファイルの自動生成ライブラリだ。簡単な設定で面倒な各種ファイルの準備をしてくれる。

作業に先立ち、今回のスキーマを書いておくので、コピペする人は参考にされたし。



app/Config/Schema/schema.php
  1. class AppSchema extends CakeSchema {  
  2.   
  3.   public function before($event = array()) {  
  4.     return true;  
  5.   }  
  6.   
  7.   public function after($event = array()) {  
  8.   }  
  9.   
  10.   public $users = array(  
  11.     'id' => array('type' => 'integer''null' => false, 'default' => NULL, 'length' => 5, 'key' => 'primary''collate' => NULL, 'comment' => ''),  
  12.     'username' => array('type' => 'string''null' => false, 'default' => NULL, 'length' => 64, 'key' => 'index',     'collate' => 'utf8_general_ci''comment' => '''charset' => 'utf8'),  
  13.     'password' => array('type' => 'string''null' => false, 'default' => NULL, 'length' => 40, 'collate' => 'utf8_general_ci''comment' => '''charset' => 'utf8'),  
  14.     'is_enabled' => array('type' => 'boolean''null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),  
  15.     'is_deleted' => array('type' => 'boolean''null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),  
  16.     'created' => array('type' => 'datetime''null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),  
  17.     'modefied' => array('type' => 'datetime''null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),  
  18.     'indexes' => array('PRIMARY' => array('column' => 'id''unique' => 1), 'users_idx' => array('column' => array('username''password''is_enabled''is_deleted''created''modefied'), 'unique' => 0)),  
  19.     'tableParameters' => array('charset' => 'utf8''collate' => 'utf8_general_ci''engine' => 'InnoDB')  
  20.   );  
  21.   
  22.   public $profiles = array(  
  23.     'id' => array('type' => 'integer''null' => false, 'default' => null, 'length' => 5, 'key' => 'primary''collate' => null, 'comment' => ''),  
  24.     'user_id' => array'type' => 'integer''null' => false, 'default' => null, 'length' => 5, 'key' => 'index''collate' => null, 'comment' => '' ),  
  25.     'name' => array('type' => 'string''null' => false, 'default' => NULL, 'length' => 32, 'key' => 'index',     'collate' => 'utf8_general_ci''comment' => '表示名''charset' => 'utf8'),  
  26.     'created' => array('type' => 'datetime''null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),  
  27.     'modified' => array('type' => 'datetime''null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),  
  28.     'indexes' => array('PRIMARY' => array('column' => 'id''unique' => 1), 'profile_idx' => array('column' => array('user_id''name''created''modified'), 'unique' => 1)),  
  29.     'tableParameters' => array('charset' => 'utf8''collate' => 'utf8_general_ci''engine' => 'InnoDB')  
  30.   );  
  31.     
  32. }  
このファイルを作成後、コンソールでスキーマを自動生成。
  1. $ ./cake schema -app ../../app create  

このままでもいいんだけど、int型がただの整数になってしまっているので、可能であれば符号なしの正の数にしておきたい。

MySQL WorkbenchやphpMyAdminなどのGUIツールでunsignedに変更しても良いし、以下のSQLを実行するなどで対応しておこう。
  1. ALTER TABLE  `profiles` CHANGE  `id`  `id` INT( 5 ) UNSIGNED NOT NULL AUTO_INCREMENT  
  2. ALTER TABLE  `profiles` CHANGE  `user_id`  `user_id` INT( 5 ) UNSIGNED NOT NULL  
  3. ALTER TABLE  `users` CHANGE  `id`  `id` INT( 5 ) UNSIGNED NOT NULL AUTO_INCREMENT  
  4. ALTER TABLE  `users` CHANGE  `is_enabled`  `is_enabled` TINYINT( 1 ) UNSIGNED NOT NULL COMMENT  '使用フラグ',  
  5. CHANGE  `is_deleted`  `is_deleted` TINYINT( 1 ) UNSIGNED NOT NULL COMMENT  '削除フラグ'  

出来ればschemaコマンド側でこの対応をしてもらうと助かるんだけどね。しばらく掛かりそう。

■モデルを作ってみよう

さて、すでにデータベーススキーマが生成されているので、Bakeがモデルを認識してくれるはず。
一旦Bakeを起動して確かめてみよう。
  1. $ ./cake bake -app ../../app  
このコマンドがBakeの基本だ。正しく入力すると、以下のようなメニューが表示される。
  1. Welcome to CakePHP v2.0.5 Console  
  2. ---------------------------------------------------------------  
  3. App : app  
  4. Path: /cakephp2.0/htdocs/app/Console/../../app/  
  5. ---------------------------------------------------------------  
  6. Interactive Bake Shell  
  7. ---------------------------------------------------------------  
  8. [D]atabase Configuration  
  9. [M]odel  
  10. [V]iew  
  11. [C]ontroller  
  12. [P]roject  
  13. [F]ixture  
  14. [T]est case  
  15. [Q]uit  
  16. What would you like to Bake? (D/M/V/C/P/F/T/Q)   
  17. >   
上から順に説明すると、
[D]atabase Configuration
app/Config/database.phpの自動生成
[M]odel
app/Model内にモデルファイル自動生成
[V]iew
app/View内にビューファイル自動生成
[C]ontroller
app/Controller内にコントローラファイル自動生成
[P]roject
appと同じフォルダ構造(プロジェクト)を自動生成
[F]ixture
テストで使うフィクスチャ自動生成
[T]est case
テストケース自動生成
[Q]uit
Bakeの終了
となっている。

ちなみにコマンドで直接指定することも可能だ。
その場合、上記には表示されてないが、プラグインも可能となっている。

以下がそのコマンドになる。
  1. $ cake bake <オプション>  
オプションは以下が使用可能。
  • db_config
  • model
  • view
  • controller
  • project
  • fixture
  • test
  • plugin <プラグイン名>
  • all

今回はすでにデータベーススキーマが存在しているのが前提なので、モデルから作ってみよう。「m」もしくは「M」をタイプしてEnterする。
  1. ---------------------------------------------------------------  
  2. Interactive Bake Shell  
  3. ---------------------------------------------------------------  
  4. [D]atabase Configuration  
  5. [M]odel  
  6. [V]iew  
  7. [C]ontroller  
  8. [P]roject  
  9. [F]ixture  
  10. [T]est case  
  11. [Q]uit  
  12. What would you like to Bake? (D/M/V/C/P/F/T/Q)   
  13. > m ◀ モデルを自動生成させるので「m」もしくは「M」  
  14.   
  15. ---------------------------------------------------------------  
  16. Bake Model  
  17. Path: /cakephp2.0/htdocs/app/Console/../../app/Model/  
  18. ---------------------------------------------------------------  
  19. Use Database Config: (default/test)   
  20. [default] > ◀ database.phpの$defaultを使用するので「Enter」  
  21.   
  22. Possible Models based on your current database:  
  23. 1. Profile  
  24. 2. User  
  25. Enter a number from the list above,  
  26. type in the name of another model, or 'q' to exit    
  27. [q] > 1 ◀ Profileモデルを先に作るので「1」  
  28.   
  29. Would you like to supply validation criteria   
  30. for the fields in your model? (y/n)   
  31. [y] > n ◀ バリデーションはとりあえず後にするので「n」  
  32.   
  33. Would you like to define model associations  
  34. (hasMany, hasOne, belongsTo, etc.)? (y/n)   
  35. [y] > y ◀ Userモデルとアソシエーションするので「y」もしくは「Enter」  
  36.   
  37. One moment while the associations are detected.  
  38. ---------------------------------------------------------------  
  39. Please confirm the following associations:  
  40. ---------------------------------------------------------------  
  41. Profile belongsTo User? (y/n)   
  42. [y] > y ◀ Profile belongs to Userなので「y」もしくは「Enter」  
  43.   
  44. Would you like to define some additional model associations? (y/n)   
  45. [n] > n ◀ 他にアソシエーション張るモデルは無いので「n」もしくは「Enter」  
  46.   
  47. ---------------------------------------------------------------  
  48. The following Model will be created:  
  49. ---------------------------------------------------------------  
  50. Name:       Profile  
  51. DB Table:   `profiles`  
  52. Associations:  
  53.         Profile belongsTo User  
  54. ---------------------------------------------------------------  
  55. Look okay? (y/n)   
  56. [y] > y ◀ これで良いか?と聞かれるので「y」もしくは「Enter」  
これだけの問答で、以下のソースが生成されるんだ。

app/Model/Profile.php
  1. App::uses('AppModel''Model');  
  2. /** 
  3.  * Profile Model 
  4.  * 
  5.  * @property User $User 
  6.  */  
  7. class Profile extends AppModel {  
  8. /** 
  9.  * Display field 
  10.  * 
  11.  * @var string 
  12.  */  
  13.  public $displayField = 'name';  
  14.   
  15.  //The Associations below have been created with all possible keys, those that are not needed can be removed  
  16.   
  17. /** 
  18.  * belongsTo associations 
  19.  * 
  20.  * @var array 
  21.  */  
  22.  public $belongsTo = array(  
  23.   'User' => array(  
  24.    'className' => 'User',  
  25.    'foreignKey' => 'user_id',  
  26.    'conditions' => '',  
  27.    'fields' => '',  
  28.    'order' => ''  
  29.   )  
  30.  );  
  31. }  

同じように、Userモデルも作ってみよう。
  1. ---------------------------------------------------------------  
  2. Bake Model  
  3. Path: /cakephp2.0/htdocs/app/Console/../../app/Model/  
  4. ---------------------------------------------------------------  
  5. Possible Models based on your current database:  
  6. 1. Profile  
  7. 2. User  
  8. Enter a number from the list above,  
  9. type in the name of another model, or 'q' to exit    
  10. [q] > 2 ◀ Userモデルを作るので「2」  
  11.   
  12. A displayField could not be automatically detected  
  13. would you like to choose one? (y/n)   
  14. > n ◀ $displayFieldが自動検出できなかったが使わないので「n」  
  15.   
  16. Would you like to supply validation criteria   
  17. for the fields in your model? (y/n)   
  18. [y] > n ◀ バリデーションはとりあえず後にするので「n」  
  19.   
  20. Would you like to define model associations  
  21. (hasMany, hasOne, belongsTo, etc.)? (y/n)   
  22. [y] > y ◀ Profileとアソシエーション張るので「y」もしくは「Enter」  
  23.   
  24. One moment while the associations are detected.  
  25. ---------------------------------------------------------------  
  26. Please confirm the following associations:  
  27. ---------------------------------------------------------------  
  28. User hasMany Profile? (y/n)   
  29. [y] > n ◀ hasManyではないので「n」  
  30.   
  31. User hasOne Profile? (y/n)   
  32. [y] > y ◀ hasOneなので「y」もしくは「Enter」  
  33.   
  34. Would you like to define some additional model associations? (y/n)   
  35. [n] > n ◀ 他にアソシエーション張るモデルは無いので「n」もしくは「Enter」  
  36.   
  37. ---------------------------------------------------------------  
  38. The following Model will be created:  
  39. ---------------------------------------------------------------  
  40. Name:       User  
  41. DB Table:   `users`  
  42. Associations:  
  43.         User hasOne Profile  
  44. ---------------------------------------------------------------  
  45. Look okay? (y/n)   
  46. [y] > y ◀ これで良いか?と聞かれるので「y」もしくは「Enter」  
これでProfile.phpと同じように、以下のソースが自動生成される。

app/Model/User.php
  1. App::uses('AppModel''Model');  
  2. /** 
  3.  * User Model 
  4.  * 
  5.  * @property Profile $Profile 
  6.  */  
  7. class User extends AppModel {  
  8.   
  9.  //The Associations below have been created with all possible keys, those that are not needed can be removed  
  10.   
  11. /** 
  12.  * hasOne associations 
  13.  * 
  14.  * @var array 
  15.  */  
  16.  public $hasOne = array(  
  17.   'Profile' => array(  
  18.    'className' => 'Profile',  
  19.    'foreignKey' => 'user_id',  
  20.    'conditions' => '',  
  21.    'fields' => '',  
  22.    'order' => ''  
  23.   )  
  24.  );  
  25. }  
もうナイス過ぎて下痢しそうだ。
モデルはこれで一旦完了とする。

■コントローラを作ってみよう

さて、モデルファイルを自動生成したように、今度はコントローラを作ってみようじゃないか。
どういった内容のアクションを作るのかというと、基本的な以下の5つになる。
  • Userの一覧
  • Userの詳細
  • Userの追加
  • Userの編集
  • Userの削除
これらのアクションを自動生成してしまおうという話だ。これはすごく便利。
という訳で早速行ってみよう。
  1. Welcome to CakePHP v2.0.5 Console  
  2. ---------------------------------------------------------------  
  3. App : app  
  4. Path: /cakephp2.0/htdocs/app/Console/../../app/  
  5. ---------------------------------------------------------------  
  6. Interactive Bake Shell  
  7. ---------------------------------------------------------------  
  8. [D]atabase Configuration  
  9. [M]odel  
  10. [V]iew  
  11. [C]ontroller  
  12. [P]roject  
  13. [F]ixture  
  14. [T]est case  
  15. [Q]uit  
  16. What would you like to Bake? (D/M/V/C/P/F/T/Q)   
  17. > c ◀ Controllerを作るので「c」もしくは「C」  
  18.   
  19. ---------------------------------------------------------------  
  20. Bake Controller  
  21. Path: /cakephp2.0/htdocs/app/Console/../../app/Controller/  
  22. ---------------------------------------------------------------  
  23. Use Database Config: (default/test)   
  24. [default] > ◀ database.phpの$defaultを使用するので「Enter」  
  25.   
  26. Possible Controllers based on your current database:  
  27. 1. Profiles  
  28. 2. Users  
  29. Enter a number from the list above,  
  30. type in the name of another controller, or 'q' to exit    
  31. [q] > 2 ◀ Usersコントローラを作成するので「2」  
  32.   
  33. ---------------------------------------------------------------  
  34. Baking UsersController  
  35. ---------------------------------------------------------------  
  36. Would you like to build your controller interactively? (y/n)   
  37. [y] > y ◀ 対話式に構築していくので「y」もしくは「Enter」  
  38.   
  39. Would you like to use dynamic scaffolding? (y/n)   
  40. [n] > n ◀ 動的スカフォルドしないので「n」もしくは「Enter」  
  41.   
  42. Would you like to create some basic class methods   
  43. (index(), add(), view(), edit())? (y/n)   
  44. [n] > y ◀ 一覧、追加、詳細、編集アクションを自動生成するので「y」  
  45.   
  46. Would you like to create the basic class methods for admin routing? (y/n)   
  47. [n] > n ◀ 管理用アプリは今は作らないので「n」もしくは「Enter」  
  48.   
  49. Would you like this controller to use other helpers  
  50. besides HtmlHelper and FormHelper? (y/n)   
  51. [n] > n ◀ 今のところHTMLヘルパー、Formヘルパー以外使わないので「n」もしくは「Enter」  
  52.   
  53. Would you like this controller to use any components? (y/n)   
  54. [n] > n ◀ コンポーネントはまだ使用しないので「n」もしくは「Enter」  
  55.   
  56. Would you like to use Session flash messages? (y/n)   
  57. [y] > y ◀ セッションフラッシュメッセージを使うので「y」もしくは「Enter」  
  58.   
  59. ---------------------------------------------------------------  
  60. The following controller will be created:  
  61. ---------------------------------------------------------------  
  62. Controller Name:  
  63.         Users  
  64. ---------------------------------------------------------------  
  65. Look okay? (y/n)   
  66. [y] > y ◀ これでよろしいかと聞かれるので「y」もしくは「Enter」  
これで以下のようなソースが自動生成される。

app/Controller/UsersController.php
  1. App::uses('AppController''Controller');  
  2. /** 
  3.  * Users Controller 
  4.  * 
  5.  * @property User $User 
  6.  */  
  7. class UsersController extends AppController {  
  8.   
  9.   
  10. /** 
  11.  * index method 
  12.  * 
  13.  * @return void 
  14.  */  
  15.  public function index() {  
  16.   $this->User->recursive = 0;  
  17.   $this->set('users'$this->paginate());  
  18.  }  
  19.   
  20. /** 
  21.  * view method 
  22.  * 
  23.  * @param string $id 
  24.  * @return void 
  25.  */  
  26.  public function view($id = null) {  
  27.   $this->User->id = $id;  
  28.   if (!$this->User->exists()) {  
  29.    throw new NotFoundException(__('Invalid user'));  
  30.   }  
  31.   $this->set('user'$this->User->read(null, $id));  
  32.  }  
  33.   
  34. /** 
  35.  * add method 
  36.  * 
  37.  * @return void 
  38.  */  
  39.  public function add() {  
  40.   if ($this->request->is('post')) {  
  41.    $this->User->create();  
  42.    if ($this->User->save($this->request->data)) {  
  43.     $this->Session->setFlash(__('The user has been saved'));  
  44.     $this->redirect(array('action' => 'index'));  
  45.    } else {  
  46.     $this->Session->setFlash(__('The user could not be saved. Please, try again.'));  
  47.    }  
  48.   }  
  49.  }  
  50.   
  51. /** 
  52.  * edit method 
  53.  * 
  54.  * @param string $id 
  55.  * @return void 
  56.  */  
  57.  public function edit($id = null) {  
  58.   $this->User->id = $id;  
  59.   if (!$this->User->exists()) {  
  60.    throw new NotFoundException(__('Invalid user'));  
  61.   }  
  62.   if ($this->request->is('post') || $this->request->is('put')) {  
  63.    if ($this->User->save($this->request->data)) {  
  64.     $this->Session->setFlash(__('The user has been saved'));  
  65.     $this->redirect(array('action' => 'index'));  
  66.    } else {  
  67.     $this->Session->setFlash(__('The user could not be saved. Please, try again.'));  
  68.    }  
  69.   } else {  
  70.    $this->request->data = $this->User->read(null, $id);  
  71.   }  
  72.  }  
  73.   
  74. /** 
  75.  * delete method 
  76.  * 
  77.  * @param string $id 
  78.  * @return void 
  79.  */  
  80.  public function delete($id = null) {  
  81.   if (!$this->request->is('post')) {  
  82.    throw new MethodNotAllowedException();  
  83.   }  
  84.   $this->User->id = $id;  
  85.   if (!$this->User->exists()) {  
  86.    throw new NotFoundException(__('Invalid user'));  
  87.   }  
  88.   if ($this->User->delete()) {  
  89.    $this->Session->setFlash(__('User deleted'));  
  90.    $this->redirect(array('action' => 'index'));  
  91.   }  
  92.   $this->Session->setFlash(__('User was not deleted'));  
  93.   $this->redirect(array('action' => 'index'));  
  94.  }  
  95. }  
NetBeansのナビゲータでコントローラを見てみると、このような感じになっている。


簡単にアクションを説明してみよう。

indexアクション
Userモデルから全データを引っ張ってきて、users変数に代入している。

viewアクション
$idをidに持つUserモデルから1つデータを引っ張ってくる。
$idの指定がなかった場合はNotFoundException例外を投げる。

addアクション
ポストされた場合、入力されたデータをUserモデルに保存する。
保存が失敗したらエラーメッセージをフラッシュする。

editアクション
$idの指定がなかった場合はNotFoundExceptionという例外を投げる。
$idをidにもつUserモデルから1つデータを引っ張ってくる。
ポストされた場合、入力されたデータをUserモデルに保存する。
ポストされてなければ引っ張ってきたデータをリクエストデータに代入

deleteアクション
リクエストがpost形式出なかった場合、MethodNotAllowedException例外を投げる。
Userモデルのidプロパティをセットする。
該当するUserモデルがなければNotFoundException例外を投げる。
該当するUserモデルを削除し、メッセージをフラッシュする。
削除に失敗したらエラーメッセージをフラッシュする。

だいたいこんな感じだ。
同じようにして、ProfileControllerも作っておいてくだされ。

このBakeで自動生成されたソースはかなり参考になるので、最低一度はBakeでコントローラを作成しておくことをすすめるよ。

■ビューをつくってみよう

さて、モデル、コントローラとできたら、今度は具体的にブラウザで表示するビューの出番だ。これもBakeで自動生成させてしまおう。
  1. Welcome to CakePHP v2.0.5 Console  
  2. ---------------------------------------------------------------  
  3. App : app  
  4. Path: /cakephp2.0/htdocs/app/Console/../../app/  
  5. ---------------------------------------------------------------  
  6. Interactive Bake Shell  
  7. ---------------------------------------------------------------  
  8. [D]atabase Configuration  
  9. [M]odel  
  10. [V]iew  
  11. [C]ontroller  
  12. [P]roject  
  13. [F]ixture  
  14. [T]est case  
  15. [Q]uit  
  16. What would you like to Bake? (D/M/V/C/P/F/T/Q)   
  17. > v ◀ ビューファイルを自動生成するので「v」もしくは「V」  
  18.   
  19. ---------------------------------------------------------------  
  20. Bake View  
  21. Path: /home/develop/cake2.torhamzedd.com/htdocs/app/Console/../../app/View/  
  22. ---------------------------------------------------------------  
  23. Use Database Config: (default/test)   
  24. [default] > ◀ database.phpの$defaultを使用するので「Enter」  
  25.   
  26. Possible Controllers based on your current database:  
  27. 1. Profiles  
  28. 2. Users  
  29. Enter a number from the list above,  
  30. type in the name of another controller, or 'q' to exit    
  31. [q] > 2 ◀ Usersコントローラがベースになるので「2」  
  32.   
  33. Would you like bake to build your views interactively?  
  34. Warning: Choosing no will overwrite Profiles views if it exist. (y/n)   
  35. [n] > n ◀ まだProfile用のビューは作らないので「n」もしくは「Enter」  
これで、以下のファイルが生成される。
  • app/View/Users/add.ctp
  • app/View/Users/edit.ctp
  • app/View/Users/index.ctp
  • app/View/Users/view.ctp

Usersと同じく、Profilesのビューも作っておいてくだされ。

これでひと通り、最低限ブラウザで確認できるまで自動生成させることができた。

■ブラウザで見てみよう

アクセスするURLは/usersになる。
自動的にUsersControllerのindexアクションが実行され、Users/index.ctpをテンプレートとして表示してくれるはずだ。


これまたなんと凝った画面だこと。
CakePHP1.2の時代に比べると、恐ろしく発展を遂げているではないか。

画面左側にはナビゲーションまで付いている。
  • New User
  • List Profile
  • New Profile
ユーザを追加する際はProfileが別になっているので、少々わかりにくいが、ひと通りの操作ができるようになっている。

試しに「New User」でユーザを追加してみよう。


適当にデータを入れて、「Submit」ボタンをクリック。


正直言うと、赤はやめて欲しいんだけど、どうやら問題なくUserモデルにユーザが追加できたようだ。
セッションフラッシュでメッセージを表示させているようなので、F5キーなどでリロードしたら、この赤い忌々しいメッセージは消える。

さて、次はプロフィールを追加だ。画面左の「New Profile」をクリック。


俺の嫁の名前を入れて、「Submit」ボタンをクリック。


正直言うと、赤はやめて欲しいんだけど、どうやら問題なくProfileモデルにプロフィールが追加できたようだ。
セッションフラッシュでメッセージを表示させているようなので、F5キーなどでリロードしたら、この赤い不安なメッセージは消える。

「List User」で一旦一覧へ戻り、今追加したユーザの「View」ボタンを押してみよう。


このように、俺の嫁の詳細を確認することができる。
パスワードがモロ出しなのはサービスだ。というのは嘘で、Authコンポーネントを使えば勝手に暗号化してくれるので、安心されたし。

ちなみに「Delete」する場合、即座には消さない。一旦アラートダイアログが表示され、そこで本当に消すのかどうかを再度確認することができるので、結構安心。


OSやブラウザによっては、予め「OK」にフォーカスが当たっていることがあるので、くれぐれもEnterやスペースキーの連打には要注意だ。

■終わり

Bakeは本当に開発を助けてくれると思う。
Webアプリの設計段階でまず、モデルを決めてしまおう。そうすればスキーマが決まり、あとはBakeで焼くだけだ。

実際には、モデルにはビヘイビア(Behavior)、コントローラにはコンポーネント(Component)、ビューにはヘルパー(Helper)という拡張要素が存在し、ビヘイビアから開発し始めるようなツワモノもいるようだが、慌てないでも大丈夫。いつか、俺も君もそうなる。

というわけで、ざっくりとBakeを解説してみた。
俺もCakePHP2.0のBakeは初めてなので、いろいろ面白かった。
ぜひみんなにもやってみて欲しいと思う。そしてわかったことを俺にそっと教えてくれれば、少なくともそっちに足を向けて寝ることは無いと思うんで、ぜひよろしくだ。