请建议我..
我想隐藏所有模板中的“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>