Aimeos\Shop\Controller\JqadmController::deleteAction PHP Méthode

deleteAction() public méthode

Deletes the resource object or a list of resource objects
public deleteAction ( ) : string
Résultat string Generated output
    public function deleteAction()
    {
        if (config('shop.authorize', true)) {
            $this->authorize('admin', [['admin', 'editor']]);
        }
        $cntl = $this->createClient();
        return $this->getHtml($cntl->delete() . $cntl->search());
    }