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.
如何防止用户在 Agile Toolkit 的标准 CRUD 视图中添加新条目?
$this->add('CRUD')->setModel('User');
CRUD 有一个属性$allow_add会禁用添加功能。您应该使用此代码在 Agile Toolkit 中设置对象属性的初始值:
$allow_add
$this->add('CRUD',array('allow_add'=>false))->setModel('User');
或者,如果您不想进行编辑或想要自定义编辑页面,您可以使用 Grid:
$this->add('Grid')->setModel('User');