aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/admin.php
blob: 73e891332c31c6e77fcaa1f60310e69a9576d8d3 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<?php
/**
 * Elgg admin functions.
 * Functions for adding and manipulating options on the admin panel.
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 */


/**
 * Register an admin page with the admin panel.
 * This function extends the view "admin/main" with the provided view. This view should provide a description
 * and either a control or a link to.
 *
 * Usage:
 * 	- To add a control to the main admin panel then extend admin/main
 *  - To add a control to a new page create a page which renders a view admin/subpage
 *    (where subpage is your new page -
 *    nb. some pages already exist that you can extend), extend the main view to point to it,
 *    and add controls to your new view.
 *
 * At the moment this is essentially a wrapper around elgg_extend_view().
 *
 * @param string $new_admin_view The view associated with the control you're adding
 * @param string $view The view to extend, by default this is 'admin/main'.
 * @param int $priority Optional priority to govern the appearance in the list.
 */
function extend_elgg_admin_page($new_admin_view, $view = 'admin/main', $priority = 500) {
	elgg_deprecated_notice('extend_elgg_admin_page() does nothing now. Extend admin views manually.  See http://docs.elgg.org/', 1.8);
	//return elgg_extend_view($view, $new_admin_view, $priority);
}

/**
 * Add an admin area section or child section (aka tab).
 *
 * Used in conjuction with http://elgg.org/admin/section/child_section style
 * page handler.
 *
 * @param string $section_id Globally unique section id.
 * @param string $section_title Human readable section title.
 * @param string $parent_id If a child section, the parent section id.  Cannot have grandchildren.
 */
function elgg_add_admin_section($section_id, $section_title, $parent_id = NULL) {
	global $CONFIG;

	if (!isset($CONFIG->admin_sections)) {
		$CONFIG->admin_sections = array();
	}

	// have to support adding a child section to a missing parent
	// because of plugin order problems.  A plugin can extend
	// an admin section added by different plugin lower in the load priority.
	if ($parent_id) {
		if (!isset($CONFIG->admin_sections[$parent_id])) {
			$CONFIG->admin_sections[$parent_id] = array('children' => array());
		}

		if (!isset($CONFIG->admin_sections[$parent_id][$section_id])) {
			$CONFIG->admin_sections[$parent_id]['children'][$section_id] = array('title' => $section_title);
			return TRUE;
		} else {
			return FALSE;
		}
	} else {
		// children can be defined before parents
		if (!isset($CONFIG->admin_sections[$section_id])) {
			$CONFIG->admin_sections[$section_id] = array(
				'title' => $section_title,
				'children' => array()
			);
			return TRUE;
		} else {
			// allow to define this since children can be defined before the parent.
			$CONFIG->admin_sections[$section_id] = array(
				'title' => $section_title
			);
		}
	}
}

/**
 * Initialise the admin page.
 */
function admin_init() {
	register_action('admin/user/ban', FALSE, "", TRUE);
	register_action('admin/user/unban', FALSE, "", TRUE);
	register_action('admin/user/delete', FALSE, "", TRUE);
	register_action('admin/user/resetpassword', FALSE, "", TRUE);
	register_action('admin/user/makeadmin', FALSE, "", TRUE);
	register_action('admin/user/removeadmin', FALSE, "", TRUE);

	register_action('admin/site/update_basic', FALSE, "", TRUE);
	register_action('admin/site/update_advanced', FALSE, "", TRUE);

	register_action('admin/menu_items', FALSE, "", TRUE);

	register_action('admin/plugins/simple_update_states', FALSE, '', TRUE);


	// admin area overview and basic site settings
	elgg_add_admin_section('overview', elgg_echo('admin:overview'));
	elgg_add_admin_section('site', elgg_echo('admin:site'));
	elgg_add_admin_section('basic', elgg_echo('admin:site:basic'), 'site');
	elgg_add_admin_section('advanced', elgg_echo('admin:site:advanced'), 'site');

	// appearance
	elgg_add_admin_section('appearance', elgg_echo('admin:appearance'));
	//elgg_add_admin_section('basic', elgg_echo('admin:appearance'), 'appearance');
	elgg_add_admin_section('menu_items', elgg_echo('admin:menu_items'), 'appearance');

	// users
	elgg_add_admin_section('users', elgg_echo('admin:users'));
	elgg_add_admin_section('online', elgg_echo('admin:users:online'), 'users');
	elgg_add_admin_section('add', elgg_echo('admin:users:add'), 'users');
	elgg_add_admin_section('find', elgg_echo('admin:users:find'), 'users');

	// plugins
	elgg_add_admin_section('plugins', elgg_echo('admin:plugins'));
	elgg_add_admin_section('simple', elgg_echo('admin:plugins:simple'), 'plugins');
	elgg_add_admin_section('advanced', elgg_echo('admin:plugins:advanced'), 'plugins');

	// handled in the admin sidemenu so we don't have to generate this on every page load.
	//elgg_add_admin_section('plugin_settings', elgg_echo('admin:plugin_settings'));

	register_page_handler('admin', 'admin_settings_page_handler');
}

/**
 * Handle admin pages.  Expects corresponding views as admin/section/subsection
 *
 * @param $page
 * @return unknown_type
 */
function admin_settings_page_handler($page) {
	global $CONFIG;

	admin_gatekeeper();

	// default to overview
	if (!isset($page[0]) || empty($page[0])) {
		$page = array('overview');
	}

	// was going to fix this in the page_handler() function but
	// it's commented to explicitly return a string if there's a trailing /
	if (empty($page[count($page)-1])) {
		array_pop($page);
	}

	$vars = array('page' => $page);

	// special page for plugin settings since we create the form for them
	if ($page[0] == 'plugin_settings' && isset($page[1]) && elgg_view_exists("settings/{$page[1]}/edit")) {
		$view = '/admin/components/plugin_settings';
		$vars['plugin'] = $page[1];
		$vars['entity'] = find_plugin_settings($page[1]);
		$title = elgg_echo("admin:plugin_settings:{$page[1]}");
	} else {
		$view = 'admin/' . implode('/', $page);
		$title = elgg_echo('admin:' .  implode(':', $page));
	}

	// allow a place to store helper views outside of the web-accessible views
	if ($page[0] == 'components' || !($content = elgg_view($view, $vars))) {
		$title = elgg_echo('admin:unknown_section');
		$content = elgg_echo('admin:unknown_section');
	}

	$body = elgg_view('admin/components/admin_page_layout', array('content' => $content, 'page' => $page));
	page_draw($title, $body);
}

/**
 * Write a persistent message to the admin view.
 * Useful to alert the admin to take a certain action.
 * The id is a unique ID that can be cleared once the admin
 * completes the action.
 *
 * eg: add_admin_notice('twitter_service_no_api',
 * 	'Before your users can use Twitter services on this site, you must set up
 * 	the Twitter API key in the <a href="link">Twitter Services Settings</a>');
 *
 * @param string $id A unique ID that your plugin can remember
 * @param string $message Body of the message
 */
function elgg_add_admin_notice($id, $message) {
	if ($id && $message) {
		$admin_notice = new ElggObject();
		$admin_notice->subtype = 'admin_notice';
		// admins can see ACCESS_PRIVATE but no one else can.
		$admin_notice->access_id = ACCESS_PRIVATE;
		$admin_notice->admin_notice_id = $id;
		$admin_notice->description = $message;

		return $admin_notice->save();
	}

	return false;
}


/**
 * Remove an admin notice by ID.
 *
 * eg In actions/twitter_service/save_settings:
 * 	if (is_valid_twitter_api_key()) {
 * 		delete_admin_notice('twitter_services_no_api');
 * 	}
 *
 * @param string $id The unique ID assigned in add_admin_notice()
 */
function elgg_delete_admin_notice($id) {
	if (!$id) {
		return FALSE;
	}
	$result = TRUE;
	if ($notices = elgg_get_entities_from_metadata(array('metadata_name' => 'admin_notice_id', 'metadata_value' => $id))) {
		// in case a bad plugin adds many, let it remove them all at once.
		foreach ($notices as $notice) {
			$result = ($result && $notice->delete());
		}
		return $result;
	}
	return FALSE;
}

/**
 * List all admin messages.
 *
 * @param int $limit Limit
 */
function elgg_get_admin_notices($limit = 10) {
	return elgg_get_entities_from_metadata(array(
		'type' => 'object',
		'subtype' => 'admin_notice',
		'limit' => $limit
	));
}

/**
 * Check if an admin notice is currently active.
 * @param string $id The unique ID used to register the notice.
 */
function elgg_admin_notice_exists($id) {
	$notice = elgg_get_entities_from_metadata(array(
		'type' => 'object',
		'subtype' => 'admin_notice',
		'metadata_name_value_pair' => array('name' => 'admin_notice_id', 'value' => $id)
	));

	return ($notice) ? TRUE : FALSE;
}


// Register init functions
register_elgg_event_handler('init', 'system', 'admin_init');
register_elgg_event_handler('pagesetup', 'system', 'admin_pagesetup');