add mod_mitem to manage menu items
This commit is contained in:
parent
a7803a8eaf
commit
28a8b821b0
35
mod/menu.php
35
mod/menu.php
@ -2,10 +2,6 @@
|
||||
|
||||
require_once('include/menu.php');
|
||||
|
||||
// probably should split this into two modules - with this being the CRUD module for menu
|
||||
// and mod_mitem to do the same for menu_items
|
||||
// Currently this file has pieces of both
|
||||
|
||||
function menu_post(&$a) {
|
||||
|
||||
if(! local_user())
|
||||
@ -14,41 +10,10 @@ function menu_post(&$a) {
|
||||
$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'] : '');
|
||||
|
||||
|
||||
$mitem_link = (($_REQUEST['mitem_link']) ? $_REQUEST['menu_link'] : '');
|
||||
$mitem_desc = (($_REQUEST['mitem_desc']) ? $_REQUEST['mitem_desc'] : '');
|
||||
$mitem_order = (($_REQUEST['mitem_order']) ? intval($_REQUEST['mitem_order']) : 0);
|
||||
$mitem_id = (($_REQUEST['mitem_id']) ? intval($_REQUEST['mitem_id']) : 0);
|
||||
|
||||
$mitem_flags = (($_REQUEST['mitem_zid']) ? MENU_ITEM_ZID : 0);
|
||||
|
||||
|
||||
if ((! $_REQUEST['contact_allow'])
|
||||
&& (! $_REQUEST['group_allow'])
|
||||
&& (! $_REQUEST['contact_deny'])
|
||||
&& (! $_REQUEST['group_deny'])) {
|
||||
$str_group_allow = $channel['channel_allow_gid'];
|
||||
$str_contact_allow = $channel['channel_allow_cid'];
|
||||
$str_group_deny = $channel['channel_deny_gid'];
|
||||
$str_contact_deny = $channel['channel_deny_cid'];
|
||||
}
|
||||
else {
|
||||
|
||||
// use the posted permissions
|
||||
|
||||
$str_group_allow = perms2str($_REQUEST['group_allow']);
|
||||
$str_contact_allow = perms2str($_REQUEST['contact_allow']);
|
||||
$str_group_deny = perms2str($_REQUEST['group_deny']);
|
||||
$str_contact_deny = perms2str($_REQUEST['contact_deny']);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
95
mod/mitem.php
Normal file
95
mod/mitem.php
Normal file
@ -0,0 +1,95 @@
|
||||
<?php
|
||||
|
||||
function mitem_post(&$a) {
|
||||
|
||||
if(! local_user())
|
||||
return;
|
||||
|
||||
$channel = $a->get_channel();
|
||||
$mitem_id = ((argc() > 1) ? intval(argv(1)) : 0);
|
||||
|
||||
$mitem_link = (($_REQUEST['mitem_link']) ? $_REQUEST['menu_link'] : '');
|
||||
$mitem_desc = (($_REQUEST['mitem_desc']) ? $_REQUEST['mitem_desc'] : '');
|
||||
$mitem_order = (($_REQUEST['mitem_order']) ? intval($_REQUEST['mitem_order']) : 0);
|
||||
$mitem_id = (($_REQUEST['mitem_id']) ? intval($_REQUEST['mitem_id']) : 0);
|
||||
|
||||
$mitem_flags = (($_REQUEST['mitem_zid']) ? MENU_ITEM_ZID : 0);
|
||||
|
||||
|
||||
if ((! $_REQUEST['contact_allow'])
|
||||
&& (! $_REQUEST['group_allow'])
|
||||
&& (! $_REQUEST['contact_deny'])
|
||||
&& (! $_REQUEST['group_deny'])) {
|
||||
$str_group_allow = $channel['channel_allow_gid'];
|
||||
$str_contact_allow = $channel['channel_allow_cid'];
|
||||
$str_group_deny = $channel['channel_deny_gid'];
|
||||
$str_contact_deny = $channel['channel_deny_cid'];
|
||||
}
|
||||
else {
|
||||
|
||||
// use the posted permissions
|
||||
|
||||
$str_group_allow = perms2str($_REQUEST['group_allow']);
|
||||
$str_contact_allow = perms2str($_REQUEST['contact_allow']);
|
||||
$str_group_deny = perms2str($_REQUEST['group_deny']);
|
||||
$str_contact_deny = perms2str($_REQUEST['contact_deny']);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
function mitem_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))) {
|
||||
$m = q("select * from menu_item where mitem_id = %d and mitem_channel_id = %d limit 1",
|
||||
intval(argv(1)),
|
||||
intval(local_user())
|
||||
);
|
||||
if(! $m) {
|
||||
notice( t('Menu item not found.') . EOL);
|
||||
goaway(z_root() . '/menu');
|
||||
}
|
||||
|
||||
$mitem = $m[0];
|
||||
if(argc() == 3 && argv(2) == 'drop') {
|
||||
$r = menu_del_item($mitem['mitem_menu_id'], local_user(),intval(argv(1)));
|
||||
if($r)
|
||||
info( t('Menu item deleted.') . EOL);
|
||||
else
|
||||
notice( t('Menu item could not be deleted.'). EOL);
|
||||
|
||||
goaway(z_root() . '/menu');
|
||||
}
|
||||
else {
|
||||
// edit menu item
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user