1 2 3 4 5 6 7 8 |
$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 |
ディレクトリを指定したいとき
1 2 3 4 5 |
$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