端くれプログラマの備忘録 CakePHP [CakePHP] Htmlヘルパーでjs/css/imgファイルを読み込む

[CakePHP] Htmlヘルパーでjs/css/imgファイルを読み込む

$this->Html->css('styles');
// webroot/css/styles.css

$this->Html->image('logo.png');
// webroot/img/logo.png

$this->Html->script('jquery.js');
// webroot/js/jquery.js

ディレクトリを指定したいとき

$this->Html->css('custom/styles'); //サブディレクトリ
// webroot/css/custom/styles.css

$this->Html->css('/custom/styles'); //非デフォルトディレクトリ
// webroot/custom/styles.css

参考サイト

HtmlHelper — CakePHP Cookbook 2.x ドキュメント
http://book.cakephp.org/2.0/ja/core-libraries/helpers/html.html