如何隐藏cakephp 3中所有模板中的选定字段

时间:2016-05-21 09:55:53

标签: php cakephp-3.0

请建议我..

我想隐藏所有模板中的“modifieduser_id”字段..

有没有办法从控制器中隐藏此字段。

<div class="masterroles form large-10 medium-9 columns">
<?= $this->Form->create($masterrole) ?>
<fieldset>
    <legend><?= __('Add Masterrole') ?></legend>
    <?php
        echo $this->Form->input('name');
       echo $this->Form->input('modifieduser_id');
  ?>
</fieldset>
<?php  //$this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>
</div>

0 个答案:

没有答案