aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-06 16:14:58 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-06 16:14:58 -0700
commit821bbd41e13e73c5de9cb74b79d2cc54f78eda03 (patch)
tree64e29cd06c6ac7e86e51243b77cd2ed9488b11bd /mod
parent04959a095f46272ecfee225e1dd85796f4e0676f (diff)
parente7b2e315102fa1e94a0f965cc7de88ea217c8783 (diff)
downloadvolse-hubzilla-821bbd41e13e73c5de9cb74b79d2cc54f78eda03.tar.gz
volse-hubzilla-821bbd41e13e73c5de9cb74b79d2cc54f78eda03.tar.bz2
volse-hubzilla-821bbd41e13e73c5de9cb74b79d2cc54f78eda03.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'mod')
-rw-r--r--mod/layouts.php6
-rw-r--r--mod/menu.php27
-rw-r--r--mod/webpages.php8
3 files changed, 24 insertions, 17 deletions
diff --git a/mod/layouts.php b/mod/layouts.php
index 74a713cf1..2616513f8 100644
--- a/mod/layouts.php
+++ b/mod/layouts.php
@@ -98,7 +98,6 @@ function layouts_content(&$a) {
header('Content-disposition: attachment; filename="' . $r[0]['sid'] . '.pdl"');
echo json_encode($r);
killme();
-
}
}
@@ -156,7 +155,7 @@ function layouts_content(&$a) {
'title' => $rr['sid'],
'mid' => $rr['mid']
);
- }
+ }
}
//Build the base URL for edit links
@@ -172,7 +171,6 @@ function layouts_content(&$a) {
'$preview' => '1',
));
-
- return $o;
+ return $o;
}
diff --git a/mod/menu.php b/mod/menu.php
index 7e9c580a8..4153f1ac0 100644
--- a/mod/menu.php
+++ b/mod/menu.php
@@ -3,11 +3,20 @@
require_once('include/menu.php');
require_once('include/identity.php');
+function menu_init(&$a) {
+ if (array_key_exists('sys', $_REQUEST) && $_REQUEST['sys'] && is_site_admin()) {
+ $sys = get_sys_channel();
+ if ($sys && intval($sys['channel_id'])) {
+ $a->is_sys = true;
+ }
+ }
+}
+
function menu_post(&$a) {
$uid = local_channel();
- if(array_key_exists('sys',$_REQUEST) && $_REQUEST['sys'] && is_site_admin()) {
+ if(array_key_exists('sys', $_REQUEST) && $_REQUEST['sys'] && is_site_admin()) {
$sys = get_sys_channel();
$uid = intval($sys['channel_id']);
$a->is_sys = true;
@@ -17,7 +26,7 @@ function menu_post(&$a) {
return;
$_REQUEST['menu_channel_id'] = $uid;
-
+
if($_REQUEST['menu_bookmark'])
$_REQUEST['menu_flags'] |= MENU_BOOKMARK;
if($_REQUEST['menu_system'])
@@ -44,7 +53,6 @@ function menu_post(&$a) {
notice( t('Unable to create menu.'). EOL);
}
-
}
@@ -52,7 +60,7 @@ function menu_content(&$a) {
$uid = local_channel();
- if($a->is_sys && is_site_admin()) {
+ if ($a->is_sys && is_site_admin()) {
$sys = get_sys_channel();
$uid = intval($sys['channel_id']);
}
@@ -82,7 +90,8 @@ function menu_content(&$a) {
'$hintnew' => t('Create a new menu'),
'$hintdrop' => t('Delete this menu'),
'$hintcontent' => t('Edit menu contents'),
- '$hintedit' => t('Edit this menu')
+ '$hintedit' => t('Edit this menu'),
+ '$sys' => $a->is_sys
));
return $o;
@@ -91,18 +100,20 @@ function menu_content(&$a) {
if(argc() > 1) {
- if(argv(1) === 'new') {
+ if(argv(1) === 'new') {
$o = replace_macros(get_markup_template('menuedit.tpl'), array(
'$header' => t('New Menu'),
'$menu_name' => array('menu_name', t('Menu name'), '', t('Must be unique, only seen by you'), '*'),
'$menu_desc' => array('menu_desc', t('Menu title'), '', t('Menu title as seen by others'), ''),
'$menu_bookmark' => array('menu_bookmark', t('Allow bookmarks'), 0 , t('Menu may be used to store saved bookmarks'), ''),
- '$submit' => t('Create')
+ '$submit' => t('Create'),
+ '$sys' => $a->is_sys
));
+
return $o;
}
- elseif(intval(argv(1))) {
+ elseif(intval(argv(1))) {
$m = menu_fetch_id(intval(argv(1)),$uid);
if(! $m) {
notice( t('Menu not found.') . EOL);
diff --git a/mod/webpages.php b/mod/webpages.php
index 6aff72a5e..a2a0ebf7b 100644
--- a/mod/webpages.php
+++ b/mod/webpages.php
@@ -71,7 +71,7 @@ function webpages_content(&$a) {
if(feature_enabled($owner,'expert')) {
$mimetype = (($_REQUEST['mimetype']) ? $_REQUEST['mimetype'] : get_pconfig($owner,'system','page_mimetype'));
if(! $mimetype)
- $mimetype = 'choose';
+ $mimetype = 'choose';
}
else {
$mimetype = 'text/bbcode';
@@ -129,7 +129,7 @@ function webpages_content(&$a) {
// Get a list of webpages. We can't display all them because endless scroll makes that unusable,
// so just list titles and an edit link.
- //TODO - this should be replaced with pagelist_widget
+ /** @TODO - this should be replaced with pagelist_widget */
$r = q("select * from item_id left join item on item_id.iid = item.id
where item_id.uid = %d and service = 'WEBPAGE' order by item.created desc",
@@ -157,7 +157,7 @@ function webpages_content(&$a) {
$url = z_root() . '/editwebpage/' . $which;
$o .= replace_macros(get_markup_template('webpagelist.tpl'), array(
- '$listtitle' => t('Webpages'),
+ '$listtitle' => t('Webpages'),
'$baseurl' => $url,
'$edit' => t('Edit'),
'$pages' => $pages,
@@ -169,9 +169,7 @@ function webpages_content(&$a) {
'$title_txt' => t('Title'),
'$created_txt' => t('Created'),
'$edited_txt' => t('Edited')
-
));
return $o;
-
}