Passed
Pull Request — master (#5)
by Michael
02:29
created

TestdataButtons::loadButtonConfig()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 18
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 14
c 1
b 0
f 0
dl 0
loc 18
rs 9.7998
cc 2
nc 2
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace XoopsModules\Groupmanager\Common;
6
7
/*
8
 You may not change or alter any portion of this comment or credits
9
 of supporting developers from this source code or any supporting source code
10
 which is considered copyrighted (c) material of the original comment or credit authors.
11
 
12
 This program is distributed in the hope that it will be useful,
13
 but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15
*/
16
17
/**
18
 *
19
 * @category        Module
20
 * @author          XOOPS Development Team <https://xoops.org>
21
 * @copyright       {@link https://xoops.org/ XOOPS Project}
22
 * @license         GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html)
23
 */
24
25
use Xmf\Request;
26
use Xmf\Yaml;
27
use XoopsModules\Groupmanager\Helper;
28
/** @var Helper $helper */
29
30
/**
31
 * Class TestdataButtons
32
 */
33
class TestdataButtons
34
{
35
36
    //functions for import buttons
37
    /**
38
     * @param $adminObject
39
     */
40
    public static function loadButtonConfig($adminObject)
41
    {
42
        $moduleDirName      = \basename(\dirname(__DIR__, 2));
43
        $moduleDirNameUpper = mb_strtoupper($moduleDirName);
44
        $yamlFile           = \dirname(__DIR__, 2) . '/config/admin.yml';
45
        $config             = Yaml::readWrapped($yamlFile); // work with phpmyadmin YAML dumps
46
        $displaySampleButton = $config['displaySampleButton'];
47
        $helper = Helper::getInstance();
48
49
        if (1 == $displaySampleButton) {
50
            \xoops_loadLanguage('admin/modulesadmin', 'system');
51
            $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'LOAD_SAMPLEDATA'), $helper->url('testdata/index.php?op=load'), 'add');
52
            $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'SAVE_SAMPLEDATA'), $helper->url('testdata/index.php?op=save'), 'add');
53
            $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'CLEAR_SAMPLEDATA'), $helper->url('testdata/index.php?op=clear'), 'alert');
54
            //    $adminObject->addItemButton(constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA'), $helper->url( 'testdata/index.php?op=exportschema'), 'add');
55
            $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'HIDE_SAMPLEDATA_BUTTONS'), '?op=hide_buttons', 'delete');
56
        } else {
57
            $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'SHOW_SAMPLEDATA_BUTTONS'), '?op=show_buttons', 'add');
58
            // $displaySampleButton = $config['displaySampleButton'];
59
        }
60
    }
61
62
    /**
63
     *
64
     */
65
    public static function hideButtons()
66
    {
67
        $yamlFile            = \dirname(__DIR__, 2) . '/config/admin.yml';
68
        $app                        = [];
69
        $app['displaySampleButton'] = 0;
70
        Yaml::save($app, $yamlFile);
71
        \redirect_header('index.php', 0, '');
72
    }
73
74
    /**
75
     *
76
     */
77
    public static function showButtons()
78
    {
79
        $yamlFile            = \dirname(__DIR__, 2) . '/config/admin.yml';
80
        $app                        = [];
81
        $app['displaySampleButton'] = 1;
82
        Yaml::save($app, $yamlFile);
83
        \redirect_header('index.php', 0, '');
84
    }
85
}
86
87