$this->value, 'row' => $this->row, 'enableAction' => $this->resolveAction(Enable::class), 'disableAction' => $this->resolveAction(Disable::class), 'uninstallAction' => $this->resolveAction(Uninstall::class), 'linkIcon' => 'icon-link', ]); } protected function resolveAction($action) { $action = new $action(); $action->setGrid($this->grid); $action->setColumn($this->column); $action->setRow($this->row); return $action->render(); } }