Skip to content
Code-Schnipsel Gruppen Projekte
Factory.php 1,33 KiB
Newer Older
<?php

namespace QUI\Menu\Independent;

use QUI;

/**
 *
 */
class Factory
{
    /**
     * @throws QUI\Database\Exception
     * @throws QUI\Exception
     */
    public static function createMenu(): Menu
    {
        QUI\Permissions\Permission::checkPermission('quiqqer.menu.create');

        QUI::getDataBase()->insert(Handler::table(), [
            'title' => '',
            'workingTitle' => '',
            'data' => ''
        ]);

        $lastId = QUI::getPDO()->lastInsertId();

Patrick Müller's avatar
Patrick Müller committed
        $Menu = Handler::getMenu($lastId);

        try {
            QUI::getEvents()->fireEvent('quiqqerMenuIndependentCreate', [$Menu]);
        } catch (Exception $Exception) {
Patrick Müller's avatar
Patrick Müller committed
            QUI\System\Log::writeException($Exception);
        }

        return $Menu;
    }

    /**
     * @param int $menuId
     *
     * @throws QUI\Database\Exception
     * @throws QUI\Permissions\Exception
     */
    public static function deleteMenu(int $menuId): void
    {
        QUI\Permissions\Permission::checkPermission('quiqqer.menu.delete');

        QUI::getDataBase()->delete(Handler::table(), [
            'id' => $menuId
        ]);

        try {
            QUI::getEvents()->fireEvent('quiqqerMenuIndependentDelete', [$menuId]);
        } catch (Exception $Exception) {
            QUI\System\Log::writeException($Exception);
        }