| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace UCore\DcatAdmin;
- use Dcat\Admin\Grid\RowAction as BaseRowAction;
- /**
- * 行操作,列表页面,覆盖渲染
- *
- */
- class RowActionHandler extends BaseRowAction
- {
- /**
- * @var AdminController
- */
- public $controller;
- final public function render()
- {
- if (!$this->allowed()) {
- return '';
- }
- return parent::render();
- }
- public function setController($c)
- {
- $this->controller = $c;
- return $this;
- }
- }
|