CakePHP Viewのラベルを変更する

デフォルトでは列タイトルがそのまま表示されてしまいます。
分かりやすい日本語表示に変更します。

INPUTの場合は以下のようにします。

<div class="companies form">
Form-&gt;create('Company'); ?&gt;
        <fieldset>
                <legend></legend>
        Form-&gt;input('comp_code',array('label'=&gt;'企業コード'));

pagenagerの場合は以下のようにします。

<div class="companies index">
        <h2></h2>
        <table cellpadding="0" cellspacing="0">
        <tr>
                        <th>Paginator-&gt;sort('comp_code','企業コード'); ?&gt;</th>
                        <th>Paginator-&gt;sort('comp_name','企業名称'); ?&gt;</th>

タイトルとURLをコピーしました