Aimeos\Shop\Controller\JqadmController::getAction PHP Method

getAction() public method

Returns the HTML code for the requested resource object
public getAction ( ) : string
return string Generated output
    public function getAction()
    {
        if (config('shop.authorize', true)) {
            $this->authorize('admin', [['admin', 'editor']]);
        }
        $cntl = $this->createClient();
        return $this->getHtml($cntl->get());
    }