You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
363 B
14 lines
363 B
8 years ago
|
<?php
|
||
|
require_once dirname(__FILE__).'/config.php';
|
||
|
|
||
|
$plugin = SepePlugin::create();
|
||
|
$enable = $plugin->get('sepe_enable');
|
||
|
$pluginPath = api_get_path(WEB_PLUGIN_PATH).'sepe/src/menu_sepe_administracion.php';
|
||
|
|
||
|
if ($enable == "true" && api_is_platform_admin()) {
|
||
|
header('Location:'.$pluginPath);
|
||
|
} else {
|
||
|
header('Location: ../../index.php');
|
||
|
}
|
||
|
|