LoginSignup
3
3

More than 3 years have passed since last update.

FormHelperのカスタマイズ

Last updated at Posted at 2016-08-04

全体のテンプレートを変更する

テンプレートの作成

config/customized_form.php
<?php
/**
 * 変更したいテンプレートのみ設定する
 */
return [
    'dateWidget' => '<ul class="list-inline"><li class="year">{{year}}</li><li class="month">{{month}}</li><li class="day">{{day}}</li></ul>'
];

テンプレート読み込み

AppView.php
public function initialize() 
{
    $this->loadHelper('Form',['templates' => 'customized_form']);
}

CakePHP3のFormHelper標準のテンプレート一覧はこちら
FormHelper template

一時的に変更する

$this->Form->templates(['dateWidget' => '<ul class="list-inline"><li class="year">{{year}}</li><li class="month">{{month}}</li><li class="day">{{day}}</li></ul>']);

echo $this->Form->date('datecol');
3
3
1

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
3
3