Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーがAgileToolkitの標準のCRUDビューに新しいエントリを追加できないようにするにはどうすればよいですか?
$this->add('CRUD')->setModel('User');
CRUDには、$allow_add追加機能を無効にするプロパティがあります。次のコードを使用して、AgileToolkitのオブジェクトプロパティの初期値を設定する必要があります。
$allow_add
$this->add('CRUD',array('allow_add'=>false))->setModel('User');
または、編集したくない場合、または編集ページをカスタマイズしたい場合は、グリッドを使用できます。
$this->add('Grid')->setModel('User');