admin/menu.php
<?php declare(strict_types=1);
/*
XOOPS - PHP Content Management System
Copyright (c) 2000-2020 XOOPS.org
<https://xoops.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
You may not change or alter any portion of this comment or credits
of supporting developers from this source code or any supporting
source code which is considered copyrighted (c) material of the
original comment or credit authors.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* Administration menu for the XoopsPoll Module
*
* @copyright :: {@link https://xoops.org/ XOOPS Project}
* @license :: {@link https://www.gnu.org/licenses/gpl-2.0.html GNU GPL 2.0 or later}
* @subpackage:: admin
* @since :: 2.5.0
* @author :: XOOPS Module Team
*/
use Xmf\Module\Admin;
use XoopsModules\Xoopspoll\{
Common,
Helper
};
include \dirname(__DIR__) . '/preloads/autoloader.php';
$moduleDirName = \basename(\dirname(__DIR__));
$moduleDirNameUpper = \mb_strtoupper($moduleDirName);
$helper = Helper::getInstance();
$helper->loadLanguage('common');
$helper->loadLanguage('feedback');
$pathIcon32 = Admin::menuIconPath('');
$pathModIcon32 = XOOPS_URL . '/modules/' . $moduleDirName . '/assets/images/icons/32/';
if (is_object($helper->getModule()) && false !== $helper->getModule()->getInfo('modicons32')) {
$pathModIcon32 = $helper->url($helper->getModule()->getInfo('modicons32'));
}
/**
* Admin Menu
*/
$adminmenu[] = [
'title' => _MI_XOOPSPOLL_HOME,
'link' => 'admin/index.php',
'desc' => _MI_XOOPSPOLL_HOMEDSC,
'icon' => $pathIcon32 . '/home.png',
];
$adminmenu[] = [
'title' => _MI_XOOPSPOLL_ADMENU1,
'link' => 'admin/main.php',
'desc' => _MI_XOOPSPOLL_ADMENU1DSC,
'icon' => $pathIcon32 . '/poll.png',
];
//$adminmenu[] = [
// 'title' => _MI_XOOPSPOLL_ADMENU2,
// 'link' => 'admin/utility.php',
// 'desc' => _MI_XOOPSPOLL_ADMENU2DSC,
// 'icon' => $pathIcon32 . '/wizard.png',
//];
// Blocks Admin
$adminmenu[] = [
'title' => constant('CO_' . $moduleDirNameUpper . '_' . 'BLOCKS'),
'link' => 'admin/blocksadmin.php',
'icon' => $pathIcon32 . '/block.png',
];
if (is_object($helper->getModule()) && $helper->getConfig('displayDeveloperTools')) {
$adminmenu[] = [
'title' => constant('CO_' . $moduleDirNameUpper . '_' . 'ADMENU_MIGRATE'),
'link' => 'admin/migrate.php',
'icon' => $pathIcon32 . '/database_go.png',
];
}
$adminmenu[] = [
'title' => _MI_XOOPSPOLL_ADABOUT,
'link' => 'admin/about.php',
'desc' => _MI_XOOPSPOLL_ADABOUTDSC,
'icon' => $pathIcon32 . '/about.png',
];