Newer
Older
<?php
/**
* This file contains package_quiqqer_menu_ajax_backend_independent_create
*/
/**
* Creates a new menu
*
* @param string $title - JSON array
* @param string $title - JSON array
*
* @return array
*/
QUI::$Ajax->registerFunction(
'package_quiqqer_menu_ajax_backend_independent_create',
function ($title, $workingTitle) {
$workingTitle = json_decode($workingTitle, true);
$Menu->setTitle($title);
$Menu->setWorkingTitle($workingTitle);
$Menu->save();
return $Menu->getId();
},
['title', 'workingTitle'],