Completed
Push — master ( caf222...deba87 )
by Jeroen
72:32 queued 44:47
created

actions/admin/plugins/set_priority.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Changes the load priority of a plugin.
4
 *
5
 * Plugin priority affects view, action, and page handler
6
 * overriding as well as the order of view extensions.  Plugins with higher
7
 * priority are loaded after and override plugins with lower priorities.
8
 *
9
 * NOTE: When viewing the plugin admin page, plugins LOWER on the page
10
 * have HIGHER priority and will override views, etc from plugins above them.
11
 */
12
13
$plugin_guid = get_input('plugin_guid');
14
$priority = get_input('priority');
15
16
$plugin = get_entity($plugin_guid);
0 ignored issues
show
It seems like $plugin_guid can also be of type string; however, parameter $guid of get_entity() does only seem to accept integer, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

16
$plugin = get_entity(/** @scrutinizer ignore-type */ $plugin_guid);
Loading history...
17
18
if (!($plugin instanceof ElggPlugin)) {
19
	return elgg_error_response(elgg_echo('admin:plugins:set_priority:no', [$plugin_guid]));
20
}
21
22 View Code Duplication
if (!$plugin->setPriority($priority)) {
23
	$msg = $plugin->getError();
24
	$string = ($msg) ? 'admin:plugins:set_priority:no_with_msg' : 'admin:plugins:set_priority:no';
25
26
	return elgg_error_response(elgg_echo($string, [$plugin->getDisplayName(), $msg]));
27
}
28
29
// don't regenerate the simplecache because the plugin won't be
30
// loaded until next run.  Just invalidate and let it regnerate as needed
31
elgg_flush_caches();
32
33
return elgg_ok_response();
34