blob: 8e502bea2d2ef2250b5e94c6f4285a8186caf059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?php
/**
* Save menu items.
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*/
$featured_urls = get_input('featured_urls', array());
$hide_toolbar_entries = get_input('menu_items_hide_toolbar_entries', 'yes');
$custom_item_names = get_input('custom_item_names', array());
$custom_item_urls = get_input('custom_item_urls', array());
// save the full information from the menu item into the config table
// this will be checked upon display that it is still valid (based upon url)
$menu_items = get_register('menu');
$menu_urls = array();
$featured_url_info = array();
foreach ($menu_items as $name => $info) {
$menu_urls[$info->value->url] = $info;
}
foreach ($featured_urls as $url) {
if (array_key_exists($url, $menu_urls)) {
$featured_url_info[] = $menu_urls[$url];
}
}
// save the custom items
$custom_count = count($custom_item_names);
$custom_items = array();
for ($i=0; $i<$custom_count; $i++) {
if (isset($custom_item_names[$i]) && isset($custom_item_names[$i])) {
$name = $custom_item_names[$i];
$url = $custom_item_urls[$i];
if ($name && $url) {
$custom_items[$url] = $name;
}
}
}
// set_config() always returns 0 so can't check for failures
set_config('menu_items_featured_urls', $featured_url_info);
set_config('menu_items_hide_toolbar_entries', $hide_toolbar_entries);
set_config('menu_items_custom_items', $custom_items);
system_message(elgg_echo('admin:menu_items:saved'));
forward($_SERVER['HTTP_REFERER']);
|