This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/mod/menu.php
2013-08-12 03:25:37 -07:00

62 lines
875 B
PHP

<?php
require_once('include/menu.php');
function menu_post(&$a) {
if(! local_user())
return;
$channel = $a->get_channel();
$menu_id = ((argc() > 1) ? intval(argv(1)) : 0);
$menu_name = (($_REQUEST['menu_name']) ? $_REQUEST['menu_name'] : '');
$menu_desc = (($_REQUEST['menu_desc']) ? $_REQUEST['menu_desc'] : '');
}
function menu_content(&$a) {
if(! local_user()) {
notice( t('Permission denied.') . EOL);
return '';
}
if(argc() == 1) {
// list menus
}
if(argc() > 1) {
if(argv(1) === 'new') {
// new menu
}
elseif(intval(argv(1))) {
if(argc() == 3 && argv(2) == 'drop') {
$r = menu_delete_id(intval(argv(1)),local_user());
if($r)
info( t('Menu deleted.') . EOL);
else
notice( t('Menu could not be deleted.'). EOL);
goaway(z_root() . '/menu');
}
else {
// edit menu
}
}
}
}