Inside phparcade/Zdmin/index.php
include INST_DIR . 'includes/first.php';
foreach ($arr as $plugin) {
if (file_exists('../plugins/' . $plugin . '/admin.php')) {
/** @noinspection PhpIncludeInspection */
require_once '../plugins/' . $plugin . '/admin.php';
$func = $plugin . '_links';
$func();
}
}
This is outdated and should be rewritten to better load the functionality without requiring multiple single files.
Inside phparcade/Zdmin/index.php
This is outdated and should be rewritten to better load the functionality without requiring multiple single files.