<?php
/*
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.
*/
/**
* wgTeams module for xoops
*
* @copyright The XOOPS Project (https://xoops.org)
* @license GPL 2.0 or later
* @package wgteams
* @since 1.0
* @min_xoops 2.5.7
* @author Goffy - Wedega.com - Email:<webmaster@wedega.com> - Website:<https://wedega.com>
* @version $Id: 1.0 index.php 1 Sun 2015/12/27 23:18:01Z Goffy - Wedega $
*/
use Xmf\Yaml;
require __DIR__ . '/header.php';
$moduleDirName = basename(dirname(__DIR__));
$moduleDirNameUpper = mb_strtoupper($moduleDirName);
// Count elements
$countTeams = $teamsHandler->getCountTeams();
$countMembers = $membersHandler->getCountMembers();
$countInfofields = $infofieldsHandler->getCountInfofields();
$countRelations = $relationsHandler->getCountRelations();
// Template Index
$templateMain = 'wgteams_admin_index.tpl';
// InfoBox Statistics
$adminObject->addInfoBox(_AM_WGTEAMS_STATISTICS);
// Info elements
$adminObject->addInfoBoxLine(sprintf('<label>' . _AM_WGTEAMS_THEREARE_TEAMS . '</label>', $countTeams), '');
$adminObject->addInfoBoxLine(sprintf('<label>' . _AM_WGTEAMS_THEREARE_MEMBERS . '</label>', $countMembers), '');
$adminObject->addInfoBoxLine(sprintf('<label>' . _AM_WGTEAMS_THEREARE_INFOFIELDS . '</label>', $countInfofields), '');
$adminObject->addInfoBoxLine(sprintf('<label>' . _AM_WGTEAMS_THEREARE_RELATIONS . '</label>', $countRelations), '');
// Upload Folders
$folder = [
WGTEAMS_UPLOAD_PATH . '/teams/',
WGTEAMS_UPLOAD_PATH . '/teams/images/',
WGTEAMS_UPLOAD_PATH . '/members/',
WGTEAMS_UPLOAD_PATH . '/members/images/',
WGTEAMS_UPLOAD_PATH . '/temp/',
];
// Uploads Folders Created
foreach (array_keys($folder) as $i) {
$adminObject->addConfigBoxLine($folder[$i], 'folder');
$adminObject->addConfigBoxLine([$folder[$i], '777'], 'chmod');
}
// Render Index
$adminObject->displayNavigation(basename(__FILE__));
//------------- Test Data ----------------------------
if ($helper->getConfig('displaySampleButton')) {
$yamlFile = dirname(__DIR__) . '/config/admin.yml';
$config = loadAdminConfig($yamlFile);
$displaySampleButton = $config['displaySampleButton'];
if (1 == $displaySampleButton) {
xoops_loadLanguage('admin/modulesadmin', 'system');
require dirname(__DIR__) . '/testdata/index.php';
$adminObject->addItemButton(constant('CO_' . $moduleDirNameUpper . '_' . 'ADD_SAMPLEDATA'), '__DIR__ . /../../testdata/index.php?op=load', 'add');
$adminObject->addItemButton(constant('CO_' . $moduleDirNameUpper . '_' . 'SAVE_SAMPLEDATA'), '__DIR__ . /../../testdata/index.php?op=save', 'add');
// $adminObject->addItemButton(constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA'), '__DIR__ . /../../testdata/index.php?op=exportschema', 'add');
$adminObject->addItemButton(constant('CO_' . $moduleDirNameUpper . '_' . 'HIDE_SAMPLEDATA_BUTTONS'), '?op=hide_buttons', 'delete');
} else {
$adminObject->addItemButton(constant('CO_' . $moduleDirNameUpper . '_' . 'SHOW_SAMPLEDATA_BUTTONS'), '?op=show_buttons', 'add');
$displaySampleButton = $config['displaySampleButton'];
}
$adminObject->displayButton('left', '');
}
//------------- End Test Data ----------------------------
$adminObject->displayIndex();
/**
* @param $yamlFile
* @return array|bool
*/
function loadAdminConfig($yamlFile)
{
$config = Yaml::loadWrapped($yamlFile); // work with phpmyadmin YAML dumps
return $config;
}
/**
* @param $yamlFile
*/
function hideButtons($yamlFile)
{
$app['displaySampleButton'] = 0;
Yaml::save($app, $yamlFile);
redirect_header('index.php', 0, '');
}
/**
* @param $yamlFile
*/
function showButtons($yamlFile)
{
$app['displaySampleButton'] = 1;
Yaml::save($app, $yamlFile);
redirect_header('index.php', 0, '');
}
$op = \Xmf\Request::getString('op', 0, 'GET');
switch ($op) {
case 'hide_buttons':
hideButtons($yamlFile);
break;
case 'show_buttons':
showButtons($yamlFile);
break;
}
require __DIR__ . '/footer.php';
|