CakePHP2

CakePHP2のファイルダウンロードで大ハマリ

確信はない。以下の様にファイルのダウンロードアクションを作成した。 function download($id = null){ $file = $this->File->findById($id); $this->response->file(APP.'upload_files'.DS.$file['File']['name']); return $this->response; } すると、sql…

ヘルパーで他のヘルパー参照【CakePHP2】

ヘルパーを自作するにあたって、セッションを扱いたかったのでヘルパー内でSessionヘルパーを呼び出した。 ただこれだけでオーケー。 public $helpers = array('Session'); ちなみに、viewの変数を扱うには以下の様にする。 $this->_View->get('hoge'); $thi…

CakePHP2プラグイン

プラグインについてのメモ。 使ってる slywalker/cakephp-plugin-boost_cake TwitterBootstrapを簡単に組み込めるプラグイン。 これでhttp://http://bootswatch.com/のテンプレートを突っ込んで使ってる。 cakephp/debug_kit CakePHPでデバッグを楽にするプ…

DB項目でセレクトボックスを生成

DBから取得したデータをFormヘルパーのselectで生成する際のメモ。controller public function index(){ $items = $this->Item->find('list', array( 'fields' => array('id', 'name') )); $this->set('items', $items); } view Form->select('Item.id', $it…