mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
28 lines
478 B
PHP
28 lines
478 B
PHP
<?php
|
|
/**
|
|
* Tools
|
|
*
|
|
* @package MyAAC
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2019 MyAAC
|
|
* @link https://my-aac.org
|
|
*/
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
$title = 'Tools';
|
|
|
|
$tool = $_GET['tool'];
|
|
if (!isset($tool)) {
|
|
echo 'Tool not set.';
|
|
return;
|
|
}
|
|
|
|
if (preg_match("/[^A-z0-9_\-]/", $tool)) {
|
|
echo 'Invalid tool.';
|
|
return;
|
|
}
|
|
|
|
$file = BASE . 'admin/pages/tools/' . $tool . '.php';
|
|
if (!@file_exists($file))
|
|
require $file;
|
|
?>
|