renderPage($response, 'equipmentform', [ 'mode' => 'create', 'userfields' => $this->getUserfieldsService()->GetFields('equipment') ]); } else { return $this->renderPage($response, 'equipmentform', [ 'equipment' => $this->getDatabase()->equipment($args['equipmentId']), 'mode' => 'edit', 'userfields' => $this->getUserfieldsService()->GetFields('equipment') ]); } } public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'equipment', [ 'equipment' => $this->getDatabase()->equipment()->orderBy('name', 'COLLATE NOCASE'), 'userfields' => $this->getUserfieldsService()->GetFields('equipment'), 'userfieldValues' => $this->getUserfieldsService()->GetAllValues('equipment') ]); } public function __construct(\DI\Container $container) { parent::__construct($container); } }