@@ -23,12 +23,12 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | |
| 25 | 25 | use Xmf\{ |
| 26 | - Module\Admin, |
|
| 27 | - Request, |
|
| 28 | - Yaml |
|
| 26 | + Module\Admin, |
|
| 27 | + Request, |
|
| 28 | + Yaml |
|
| 29 | 29 | }; |
| 30 | 30 | use XoopsModules\Myiframe\{ |
| 31 | - Helper |
|
| 31 | + Helper |
|
| 32 | 32 | }; |
| 33 | 33 | |
| 34 | 34 | /** @var Helper $helper */ |
@@ -40,65 +40,65 @@ discard block |
||
| 40 | 40 | */ |
| 41 | 41 | class TestdataButtons |
| 42 | 42 | { |
| 43 | - /** Button status constants */ |
|
| 44 | - private const SHOW_BUTTONS = 1; |
|
| 45 | - private const HIDE_BUTTONS = 0; |
|
| 43 | + /** Button status constants */ |
|
| 44 | + private const SHOW_BUTTONS = 1; |
|
| 45 | + private const HIDE_BUTTONS = 0; |
|
| 46 | 46 | |
| 47 | - /** |
|
| 48 | - * Load the test button configuration |
|
| 49 | - * |
|
| 50 | - * @param \Xmf\Module\Admin $adminObject |
|
| 51 | - * |
|
| 52 | - * @return void |
|
| 53 | - */ |
|
| 54 | - public static function loadButtonConfig($adminObject): void |
|
| 55 | - { |
|
| 56 | - $moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 57 | - $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 58 | - $helper = Helper::getInstance(); |
|
| 59 | - $yamlFile = $helper->path('/config/admin.yml'); |
|
| 60 | - /** @var array $config */ |
|
| 61 | - $config = Yaml::readWrapped($yamlFile); // work with phpmyadmin YAML dumps |
|
| 62 | - $displaySampleButton = $config['displaySampleButton']; |
|
| 47 | + /** |
|
| 48 | + * Load the test button configuration |
|
| 49 | + * |
|
| 50 | + * @param \Xmf\Module\Admin $adminObject |
|
| 51 | + * |
|
| 52 | + * @return void |
|
| 53 | + */ |
|
| 54 | + public static function loadButtonConfig($adminObject): void |
|
| 55 | + { |
|
| 56 | + $moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 57 | + $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 58 | + $helper = Helper::getInstance(); |
|
| 59 | + $yamlFile = $helper->path('/config/admin.yml'); |
|
| 60 | + /** @var array $config */ |
|
| 61 | + $config = Yaml::readWrapped($yamlFile); // work with phpmyadmin YAML dumps |
|
| 62 | + $displaySampleButton = $config['displaySampleButton']; |
|
| 63 | 63 | |
| 64 | - if (self::SHOW_BUTTONS == $displaySampleButton) { |
|
| 65 | - \xoops_loadLanguage('admin/modulesadmin', 'system'); |
|
| 66 | - $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'LOAD_SAMPLEDATA'), $helper->url('testdata/index.php?op=load'), 'add'); |
|
| 67 | - $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'SAVE_SAMPLEDATA'), $helper->url('testdata/index.php?op=save'), 'add'); |
|
| 68 | - $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'CLEAR_SAMPLEDATA'), $helper->url('testdata/index.php?op=clear'), 'alert'); |
|
| 69 | - // $adminObject->addItemButton(constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA'), $helper->url( 'testdata/index.php?op=exportschema'), 'add'); |
|
| 70 | - $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'HIDE_SAMPLEDATA_BUTTONS'), '?op=hide_buttons', 'delete'); |
|
| 71 | - } else { |
|
| 72 | - $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'SHOW_SAMPLEDATA_BUTTONS'), '?op=show_buttons', 'add'); |
|
| 73 | - // $displaySampleButton = $config['displaySampleButton']; |
|
| 74 | - } |
|
| 75 | - } |
|
| 64 | + if (self::SHOW_BUTTONS == $displaySampleButton) { |
|
| 65 | + \xoops_loadLanguage('admin/modulesadmin', 'system'); |
|
| 66 | + $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'LOAD_SAMPLEDATA'), $helper->url('testdata/index.php?op=load'), 'add'); |
|
| 67 | + $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'SAVE_SAMPLEDATA'), $helper->url('testdata/index.php?op=save'), 'add'); |
|
| 68 | + $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'CLEAR_SAMPLEDATA'), $helper->url('testdata/index.php?op=clear'), 'alert'); |
|
| 69 | + // $adminObject->addItemButton(constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA'), $helper->url( 'testdata/index.php?op=exportschema'), 'add'); |
|
| 70 | + $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'HIDE_SAMPLEDATA_BUTTONS'), '?op=hide_buttons', 'delete'); |
|
| 71 | + } else { |
|
| 72 | + $adminObject->addItemButton(\constant('CO_' . $moduleDirNameUpper . '_' . 'SHOW_SAMPLEDATA_BUTTONS'), '?op=show_buttons', 'add'); |
|
| 73 | + // $displaySampleButton = $config['displaySampleButton']; |
|
| 74 | + } |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - /** |
|
| 78 | - * Hide the test buttons |
|
| 79 | - * |
|
| 80 | - * @return void |
|
| 81 | - */ |
|
| 82 | - public static function hideButtons(): void |
|
| 83 | - { |
|
| 84 | - $yamlFile = \dirname(__DIR__, 2) . '/config/admin.yml'; |
|
| 85 | - $app = []; |
|
| 86 | - $app['displaySampleButton'] = 0; |
|
| 87 | - Yaml::save($app, $yamlFile); |
|
| 88 | - \redirect_header('index.php', 0, ''); |
|
| 89 | - } |
|
| 77 | + /** |
|
| 78 | + * Hide the test buttons |
|
| 79 | + * |
|
| 80 | + * @return void |
|
| 81 | + */ |
|
| 82 | + public static function hideButtons(): void |
|
| 83 | + { |
|
| 84 | + $yamlFile = \dirname(__DIR__, 2) . '/config/admin.yml'; |
|
| 85 | + $app = []; |
|
| 86 | + $app['displaySampleButton'] = 0; |
|
| 87 | + Yaml::save($app, $yamlFile); |
|
| 88 | + \redirect_header('index.php', 0, ''); |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | - /** |
|
| 92 | - * Show the test buttons |
|
| 93 | - * |
|
| 94 | - * @return void |
|
| 95 | - */ |
|
| 96 | - public static function showButtons(): void |
|
| 97 | - { |
|
| 98 | - $yamlFile = \dirname(__DIR__, 2) . '/config/admin.yml'; |
|
| 99 | - $app = []; |
|
| 100 | - $app['displaySampleButton'] = 1; |
|
| 101 | - Yaml::save($app, $yamlFile); |
|
| 102 | - \redirect_header('index.php', 0, ''); |
|
| 103 | - } |
|
| 91 | + /** |
|
| 92 | + * Show the test buttons |
|
| 93 | + * |
|
| 94 | + * @return void |
|
| 95 | + */ |
|
| 96 | + public static function showButtons(): void |
|
| 97 | + { |
|
| 98 | + $yamlFile = \dirname(__DIR__, 2) . '/config/admin.yml'; |
|
| 99 | + $app = []; |
|
| 100 | + $app['displaySampleButton'] = 1; |
|
| 101 | + Yaml::save($app, $yamlFile); |
|
| 102 | + \redirect_header('index.php', 0, ''); |
|
| 103 | + } |
|
| 104 | 104 | } |
@@ -26,72 +26,72 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | class Blocksadmin |
| 28 | 28 | { |
| 29 | - /** |
|
| 30 | - * @var \XoopsMySQLDatabase|null |
|
| 31 | - */ |
|
| 32 | - public $db; |
|
| 33 | - /** |
|
| 34 | - * @var \Xmf\Module\Helper |
|
| 35 | - */ |
|
| 36 | - public $helper; |
|
| 37 | - /** |
|
| 38 | - * @var string |
|
| 39 | - */ |
|
| 40 | - public $moduleDirName; |
|
| 41 | - /** |
|
| 42 | - * @var string |
|
| 43 | - */ |
|
| 44 | - public $moduleDirNameUpper; |
|
| 45 | - |
|
| 46 | - /** |
|
| 47 | - * Blocksadmin constructor. |
|
| 48 | - */ |
|
| 49 | - public function __construct(?\XoopsDatabase $db, \Xmf\Module\Helper $helper) |
|
| 50 | - { |
|
| 51 | - if (null === $db) { |
|
| 52 | - $db = \XoopsDatabaseFactory::getDatabaseConnection(); |
|
| 53 | - } |
|
| 54 | - $this->db = $db; |
|
| 55 | - $this->helper = $helper; |
|
| 56 | - $this->moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 57 | - $this->moduleDirNameUpper = \mb_strtoupper($this->moduleDirName); |
|
| 58 | - \xoops_loadLanguage('admin', 'system'); |
|
| 59 | - \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 60 | - \xoops_loadLanguage('admin/groups', 'system'); |
|
| 61 | - \xoops_loadLanguage('common', $this->moduleDirName); |
|
| 62 | - // \xoops_loadLanguage('blocksadmin', $this->moduleDirName); |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * @return void |
|
| 67 | - */ |
|
| 68 | - public function listBlocks(): void |
|
| 69 | - { |
|
| 70 | - global $xoopsModule, $pathIcon16; |
|
| 71 | - require_once XOOPS_ROOT_PATH . '/class/xoopslists.php'; |
|
| 72 | - // xoops_loadLanguage('admin', 'system'); |
|
| 73 | - // xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 74 | - // xoops_loadLanguage('admin/groups', 'system'); |
|
| 75 | - // xoops_loadLanguage('common', $moduleDirName); |
|
| 76 | - // xoops_loadLanguage('blocks', $moduleDirName); |
|
| 77 | - |
|
| 78 | - /** @var \XoopsModuleHandler $moduleHandler */ |
|
| 79 | - $moduleHandler = \xoops_getHandler('module'); |
|
| 80 | - /** @var \XoopsMemberHandler $memberHandler */ |
|
| 81 | - $memberHandler = \xoops_getHandler('member'); |
|
| 82 | - /** @var \XoopsGroupPermHandler $grouppermHandler */ |
|
| 83 | - $grouppermHandler = \xoops_getHandler('groupperm'); |
|
| 84 | - $groups = $memberHandler->getGroups(); |
|
| 85 | - $criteria = new \CriteriaCompo(new \Criteria('hasmain', '1')); |
|
| 86 | - $criteria->add(new \Criteria('isactive', '1')); |
|
| 87 | - $moduleList = $moduleHandler->getList($criteria); |
|
| 88 | - $moduleList[-1] = \_AM_SYSTEM_BLOCKS_TOPPAGE; |
|
| 89 | - $moduleList[0] = \_AM_SYSTEM_BLOCKS_ALLPAGES; |
|
| 90 | - \ksort($moduleList); |
|
| 91 | - echo "<h4 style='text-align:left;'>" . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'BADMIN') . '</h4>'; |
|
| 92 | - echo "<form action='" . $_SERVER['SCRIPT_NAME'] . "' name='blockadmin' method='post'>"; |
|
| 93 | - echo $GLOBALS['xoopsSecurity']->getTokenHTML(); |
|
| 94 | - echo "<table width='100%' class='outer' cellpadding='4' cellspacing='1'> |
|
| 29 | + /** |
|
| 30 | + * @var \XoopsMySQLDatabase|null |
|
| 31 | + */ |
|
| 32 | + public $db; |
|
| 33 | + /** |
|
| 34 | + * @var \Xmf\Module\Helper |
|
| 35 | + */ |
|
| 36 | + public $helper; |
|
| 37 | + /** |
|
| 38 | + * @var string |
|
| 39 | + */ |
|
| 40 | + public $moduleDirName; |
|
| 41 | + /** |
|
| 42 | + * @var string |
|
| 43 | + */ |
|
| 44 | + public $moduleDirNameUpper; |
|
| 45 | + |
|
| 46 | + /** |
|
| 47 | + * Blocksadmin constructor. |
|
| 48 | + */ |
|
| 49 | + public function __construct(?\XoopsDatabase $db, \Xmf\Module\Helper $helper) |
|
| 50 | + { |
|
| 51 | + if (null === $db) { |
|
| 52 | + $db = \XoopsDatabaseFactory::getDatabaseConnection(); |
|
| 53 | + } |
|
| 54 | + $this->db = $db; |
|
| 55 | + $this->helper = $helper; |
|
| 56 | + $this->moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 57 | + $this->moduleDirNameUpper = \mb_strtoupper($this->moduleDirName); |
|
| 58 | + \xoops_loadLanguage('admin', 'system'); |
|
| 59 | + \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 60 | + \xoops_loadLanguage('admin/groups', 'system'); |
|
| 61 | + \xoops_loadLanguage('common', $this->moduleDirName); |
|
| 62 | + // \xoops_loadLanguage('blocksadmin', $this->moduleDirName); |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * @return void |
|
| 67 | + */ |
|
| 68 | + public function listBlocks(): void |
|
| 69 | + { |
|
| 70 | + global $xoopsModule, $pathIcon16; |
|
| 71 | + require_once XOOPS_ROOT_PATH . '/class/xoopslists.php'; |
|
| 72 | + // xoops_loadLanguage('admin', 'system'); |
|
| 73 | + // xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 74 | + // xoops_loadLanguage('admin/groups', 'system'); |
|
| 75 | + // xoops_loadLanguage('common', $moduleDirName); |
|
| 76 | + // xoops_loadLanguage('blocks', $moduleDirName); |
|
| 77 | + |
|
| 78 | + /** @var \XoopsModuleHandler $moduleHandler */ |
|
| 79 | + $moduleHandler = \xoops_getHandler('module'); |
|
| 80 | + /** @var \XoopsMemberHandler $memberHandler */ |
|
| 81 | + $memberHandler = \xoops_getHandler('member'); |
|
| 82 | + /** @var \XoopsGroupPermHandler $grouppermHandler */ |
|
| 83 | + $grouppermHandler = \xoops_getHandler('groupperm'); |
|
| 84 | + $groups = $memberHandler->getGroups(); |
|
| 85 | + $criteria = new \CriteriaCompo(new \Criteria('hasmain', '1')); |
|
| 86 | + $criteria->add(new \Criteria('isactive', '1')); |
|
| 87 | + $moduleList = $moduleHandler->getList($criteria); |
|
| 88 | + $moduleList[-1] = \_AM_SYSTEM_BLOCKS_TOPPAGE; |
|
| 89 | + $moduleList[0] = \_AM_SYSTEM_BLOCKS_ALLPAGES; |
|
| 90 | + \ksort($moduleList); |
|
| 91 | + echo "<h4 style='text-align:left;'>" . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'BADMIN') . '</h4>'; |
|
| 92 | + echo "<form action='" . $_SERVER['SCRIPT_NAME'] . "' name='blockadmin' method='post'>"; |
|
| 93 | + echo $GLOBALS['xoopsSecurity']->getTokenHTML(); |
|
| 94 | + echo "<table width='100%' class='outer' cellpadding='4' cellspacing='1'> |
|
| 95 | 95 | <tr valign='middle'><th align='center'>" . \_AM_SYSTEM_BLOCKS_TITLE . "</th><th align='center' nowrap='nowrap'>" . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'SIDE') . '<br>' . \_LEFT . '-' . \_CENTER . '-' . \_RIGHT . "</th> |
| 96 | 96 | <th align='center'>" . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'WEIGHT') . "</th> |
| 97 | 97 | <th align='center'>" . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'VISIBLE') . "</th><th align='center'>" . \_AM_SYSTEM_BLOCKS_VISIBLEIN . "</th> |
@@ -99,82 +99,82 @@ discard block |
||
| 99 | 99 | <th align='center'>" . \_AM_SYSTEM_BLOCKS_BCACHETIME . "</th> |
| 100 | 100 | <th align='center'>" . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'ACTION') . '</th> |
| 101 | 101 | </tr>'; |
| 102 | - $blockArray = \XoopsBlock::getByModule($xoopsModule->mid()); |
|
| 103 | - $blockCount = \count($blockArray); |
|
| 104 | - $class = 'even'; |
|
| 105 | - $cachetimes = [ |
|
| 106 | - 0 => \_NOCACHE, |
|
| 107 | - 30 => \sprintf(\_SECONDS, 30), |
|
| 108 | - 60 => \_MINUTE, |
|
| 109 | - 300 => \sprintf(\_MINUTES, 5), |
|
| 110 | - 1800 => \sprintf(\_MINUTES, 30), |
|
| 111 | - 3600 => \_HOUR, |
|
| 112 | - 18000 => \sprintf(\_HOURS, 5), |
|
| 113 | - 86400 => \_DAY, |
|
| 114 | - 259200 => \sprintf(\_DAYS, 3), |
|
| 115 | - 604800 => \_WEEK, |
|
| 116 | - 2592000 => \_MONTH, |
|
| 117 | - ]; |
|
| 118 | - foreach ($blockArray as $i) { |
|
| 119 | - $groupsPermissions = $grouppermHandler->getGroupIds('block_read', $i->getVar('bid')); |
|
| 120 | - $sql = 'SELECT module_id FROM ' . $this->db->prefix('block_module_link') . ' WHERE block_id=' . $i->getVar('bid'); |
|
| 121 | - $result = $this->db->query($sql); |
|
| 122 | - $modules = []; |
|
| 123 | - if (!$result instanceof \mysqli_result) { |
|
| 124 | - \trigger_error("Query Failed! SQL: $sql Error: " . $this->db->error(), \E_USER_ERROR); |
|
| 125 | - } |
|
| 126 | - while (false !== ($row = $this->db->fetchArray($result))) { |
|
| 127 | - $modules[] = (int)$row['module_id']; |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - $cachetimeOptions = ''; |
|
| 131 | - foreach ($cachetimes as $cachetime => $cachetimeName) { |
|
| 132 | - if ($i->getVar('bcachetime') == $cachetime) { |
|
| 133 | - $cachetimeOptions .= "<option value='$cachetime' selected='selected'>$cachetimeName</option>\n"; |
|
| 134 | - } else { |
|
| 135 | - $cachetimeOptions .= "<option value='$cachetime'>$cachetimeName</option>\n"; |
|
| 136 | - } |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - $ssel7 = ''; |
|
| 140 | - $ssel6 = $ssel7; |
|
| 141 | - $ssel5 = $ssel6; |
|
| 142 | - $ssel4 = $ssel5; |
|
| 143 | - $ssel3 = $ssel4; |
|
| 144 | - $ssel2 = $ssel3; |
|
| 145 | - $ssel1 = $ssel2; |
|
| 146 | - $ssel0 = $ssel1; |
|
| 147 | - $sel1 = $ssel0; |
|
| 148 | - $sel0 = $sel1; |
|
| 149 | - if (1 === $i->getVar('visible')) { |
|
| 150 | - $sel1 = ' checked'; |
|
| 151 | - } else { |
|
| 152 | - $sel0 = ' checked'; |
|
| 153 | - } |
|
| 154 | - if (\XOOPS_SIDEBLOCK_LEFT === $i->getVar('side')) { |
|
| 155 | - $ssel0 = ' checked'; |
|
| 156 | - } elseif (\XOOPS_SIDEBLOCK_RIGHT === $i->getVar('side')) { |
|
| 157 | - $ssel1 = ' checked'; |
|
| 158 | - } elseif (\XOOPS_CENTERBLOCK_LEFT === $i->getVar('side')) { |
|
| 159 | - $ssel2 = ' checked'; |
|
| 160 | - } elseif (\XOOPS_CENTERBLOCK_RIGHT === $i->getVar('side')) { |
|
| 161 | - $ssel4 = ' checked'; |
|
| 162 | - } elseif (\XOOPS_CENTERBLOCK_CENTER === $i->getVar('side')) { |
|
| 163 | - $ssel3 = ' checked'; |
|
| 164 | - } elseif (\XOOPS_CENTERBLOCK_BOTTOMLEFT === $i->getVar('side')) { |
|
| 165 | - $ssel5 = ' checked'; |
|
| 166 | - } elseif (\XOOPS_CENTERBLOCK_BOTTOMRIGHT === $i->getVar('side')) { |
|
| 167 | - $ssel6 = ' checked'; |
|
| 168 | - } elseif (\XOOPS_CENTERBLOCK_BOTTOM === $i->getVar('side')) { |
|
| 169 | - $ssel7 = ' checked'; |
|
| 170 | - } |
|
| 171 | - if ('' === $i->getVar('title')) { |
|
| 172 | - $title = ' '; |
|
| 173 | - } else { |
|
| 174 | - $title = $i->getVar('title'); |
|
| 175 | - } |
|
| 176 | - $name = $i->getVar('name'); |
|
| 177 | - echo "<tr valign='top'><td class='$class' align='center'><input type='text' name='title[" . $i->getVar('bid') . "]' value='" . $title . "'></td> |
|
| 102 | + $blockArray = \XoopsBlock::getByModule($xoopsModule->mid()); |
|
| 103 | + $blockCount = \count($blockArray); |
|
| 104 | + $class = 'even'; |
|
| 105 | + $cachetimes = [ |
|
| 106 | + 0 => \_NOCACHE, |
|
| 107 | + 30 => \sprintf(\_SECONDS, 30), |
|
| 108 | + 60 => \_MINUTE, |
|
| 109 | + 300 => \sprintf(\_MINUTES, 5), |
|
| 110 | + 1800 => \sprintf(\_MINUTES, 30), |
|
| 111 | + 3600 => \_HOUR, |
|
| 112 | + 18000 => \sprintf(\_HOURS, 5), |
|
| 113 | + 86400 => \_DAY, |
|
| 114 | + 259200 => \sprintf(\_DAYS, 3), |
|
| 115 | + 604800 => \_WEEK, |
|
| 116 | + 2592000 => \_MONTH, |
|
| 117 | + ]; |
|
| 118 | + foreach ($blockArray as $i) { |
|
| 119 | + $groupsPermissions = $grouppermHandler->getGroupIds('block_read', $i->getVar('bid')); |
|
| 120 | + $sql = 'SELECT module_id FROM ' . $this->db->prefix('block_module_link') . ' WHERE block_id=' . $i->getVar('bid'); |
|
| 121 | + $result = $this->db->query($sql); |
|
| 122 | + $modules = []; |
|
| 123 | + if (!$result instanceof \mysqli_result) { |
|
| 124 | + \trigger_error("Query Failed! SQL: $sql Error: " . $this->db->error(), \E_USER_ERROR); |
|
| 125 | + } |
|
| 126 | + while (false !== ($row = $this->db->fetchArray($result))) { |
|
| 127 | + $modules[] = (int)$row['module_id']; |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + $cachetimeOptions = ''; |
|
| 131 | + foreach ($cachetimes as $cachetime => $cachetimeName) { |
|
| 132 | + if ($i->getVar('bcachetime') == $cachetime) { |
|
| 133 | + $cachetimeOptions .= "<option value='$cachetime' selected='selected'>$cachetimeName</option>\n"; |
|
| 134 | + } else { |
|
| 135 | + $cachetimeOptions .= "<option value='$cachetime'>$cachetimeName</option>\n"; |
|
| 136 | + } |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + $ssel7 = ''; |
|
| 140 | + $ssel6 = $ssel7; |
|
| 141 | + $ssel5 = $ssel6; |
|
| 142 | + $ssel4 = $ssel5; |
|
| 143 | + $ssel3 = $ssel4; |
|
| 144 | + $ssel2 = $ssel3; |
|
| 145 | + $ssel1 = $ssel2; |
|
| 146 | + $ssel0 = $ssel1; |
|
| 147 | + $sel1 = $ssel0; |
|
| 148 | + $sel0 = $sel1; |
|
| 149 | + if (1 === $i->getVar('visible')) { |
|
| 150 | + $sel1 = ' checked'; |
|
| 151 | + } else { |
|
| 152 | + $sel0 = ' checked'; |
|
| 153 | + } |
|
| 154 | + if (\XOOPS_SIDEBLOCK_LEFT === $i->getVar('side')) { |
|
| 155 | + $ssel0 = ' checked'; |
|
| 156 | + } elseif (\XOOPS_SIDEBLOCK_RIGHT === $i->getVar('side')) { |
|
| 157 | + $ssel1 = ' checked'; |
|
| 158 | + } elseif (\XOOPS_CENTERBLOCK_LEFT === $i->getVar('side')) { |
|
| 159 | + $ssel2 = ' checked'; |
|
| 160 | + } elseif (\XOOPS_CENTERBLOCK_RIGHT === $i->getVar('side')) { |
|
| 161 | + $ssel4 = ' checked'; |
|
| 162 | + } elseif (\XOOPS_CENTERBLOCK_CENTER === $i->getVar('side')) { |
|
| 163 | + $ssel3 = ' checked'; |
|
| 164 | + } elseif (\XOOPS_CENTERBLOCK_BOTTOMLEFT === $i->getVar('side')) { |
|
| 165 | + $ssel5 = ' checked'; |
|
| 166 | + } elseif (\XOOPS_CENTERBLOCK_BOTTOMRIGHT === $i->getVar('side')) { |
|
| 167 | + $ssel6 = ' checked'; |
|
| 168 | + } elseif (\XOOPS_CENTERBLOCK_BOTTOM === $i->getVar('side')) { |
|
| 169 | + $ssel7 = ' checked'; |
|
| 170 | + } |
|
| 171 | + if ('' === $i->getVar('title')) { |
|
| 172 | + $title = ' '; |
|
| 173 | + } else { |
|
| 174 | + $title = $i->getVar('title'); |
|
| 175 | + } |
|
| 176 | + $name = $i->getVar('name'); |
|
| 177 | + echo "<tr valign='top'><td class='$class' align='center'><input type='text' name='title[" . $i->getVar('bid') . "]' value='" . $title . "'></td> |
|
| 178 | 178 | <td class='$class' align='center' nowrap='nowrap'><div align='center' > |
| 179 | 179 | <input type='radio' name='side[" . $i->getVar('bid') . "]' value='" . \XOOPS_CENTERBLOCK_LEFT . "'$ssel2> |
| 180 | 180 | <input type='radio' name='side[" . $i->getVar('bid') . "]' value='" . \XOOPS_CENTERBLOCK_CENTER . "'$ssel3> |
@@ -193,39 +193,39 @@ discard block |
||
| 193 | 193 | <td class='$class' align='center'><input type='text' name='weight[" . $i->getVar('bid') . "]' value='" . $i->getVar('weight') . "' size='5' maxlength='5'></td> |
| 194 | 194 | <td class='$class' align='center' nowrap><input type='radio' name='visible[" . $i->getVar('bid') . "]' value='1'$sel1>" . \_YES . " <input type='radio' name='visible[" . $i->getVar('bid') . "]' value='0'$sel0>" . \_NO . '</td>'; |
| 195 | 195 | |
| 196 | - echo "<td class='$class' align='center'><select size='5' name='bmodule[" . $i->getVar('bid') . "][]' id='bmodule[" . $i->getVar('bid') . "][]' multiple='multiple'>"; |
|
| 197 | - foreach ($moduleList as $k => $v) { |
|
| 198 | - echo "<option value='$k'" . (\in_array($k, $modules) ? " selected='selected'" : '') . ">$v</option>"; |
|
| 199 | - } |
|
| 200 | - echo '</select></td>'; |
|
| 196 | + echo "<td class='$class' align='center'><select size='5' name='bmodule[" . $i->getVar('bid') . "][]' id='bmodule[" . $i->getVar('bid') . "][]' multiple='multiple'>"; |
|
| 197 | + foreach ($moduleList as $k => $v) { |
|
| 198 | + echo "<option value='$k'" . (\in_array($k, $modules) ? " selected='selected'" : '') . ">$v</option>"; |
|
| 199 | + } |
|
| 200 | + echo '</select></td>'; |
|
| 201 | 201 | |
| 202 | - echo "<td class='$class' align='center'><select size='5' name='groups[" . $i->getVar('bid') . "][]' id='groups[" . $i->getVar('bid') . "][]' multiple='multiple'>"; |
|
| 203 | - foreach ($groups as $grp) { |
|
| 204 | - echo "<option value='" . $grp->getVar('groupid') . "' " . (\in_array($grp->getVar('groupid'), $groupsPermissions) ? " selected='selected'" : '') . '>' . $grp->getVar('name') . '</option>'; |
|
| 205 | - } |
|
| 206 | - echo '</select></td>'; |
|
| 202 | + echo "<td class='$class' align='center'><select size='5' name='groups[" . $i->getVar('bid') . "][]' id='groups[" . $i->getVar('bid') . "][]' multiple='multiple'>"; |
|
| 203 | + foreach ($groups as $grp) { |
|
| 204 | + echo "<option value='" . $grp->getVar('groupid') . "' " . (\in_array($grp->getVar('groupid'), $groupsPermissions) ? " selected='selected'" : '') . '>' . $grp->getVar('name') . '</option>'; |
|
| 205 | + } |
|
| 206 | + echo '</select></td>'; |
|
| 207 | 207 | |
| 208 | - // Cache lifetime |
|
| 209 | - echo '<td class="' . $class . '" align="center"> <select name="bcachetime[' . $i->getVar('bid') . ']" size="1">' . $cachetimeOptions . '</select> |
|
| 208 | + // Cache lifetime |
|
| 209 | + echo '<td class="' . $class . '" align="center"> <select name="bcachetime[' . $i->getVar('bid') . ']" size="1">' . $cachetimeOptions . '</select> |
|
| 210 | 210 | </td>'; |
| 211 | 211 | |
| 212 | - // Actions |
|
| 212 | + // Actions |
|
| 213 | 213 | |
| 214 | - echo "<td class='$class' align='center'> |
|
| 214 | + echo "<td class='$class' align='center'> |
|
| 215 | 215 | <a href='blocksadmin.php?op=edit&bid=" . $i->getVar('bid') . "'><img src=" . $pathIcon16 . '/edit.png' . " alt='" . \_EDIT . "' title='" . \_EDIT . "'></a> |
| 216 | 216 | <a href='blocksadmin.php?op=clone&bid=" . $i->getVar('bid') . "'><img src=" . $pathIcon16 . '/editcopy.png' . " alt='" . \_CLONE . "' title='" . \_CLONE . "'></a>"; |
| 217 | - // if ('S' !== $i->getVar('block_type') && 'M' !== $i->getVar('block_type')) { |
|
| 218 | - // echo " <a href='" . XOOPS_URL . '/modules/system/admin.php?fct=blocksadmin&op=delete&bid=' . $i->getVar('bid') . "'><img src=" . $pathIcon16 . '/delete.png' . " alt='" . _DELETE . "' title='" . _DELETE . "'> |
|
| 219 | - // </a>"; |
|
| 220 | - // } |
|
| 221 | - |
|
| 222 | - // if ('S' !== $i->getVar('block_type') && 'M' !== $i->getVar('block_type')) { |
|
| 223 | - if (!\in_array($i->getVar('block_type'), ['M', 'S'])) { |
|
| 224 | - echo " |
|
| 217 | + // if ('S' !== $i->getVar('block_type') && 'M' !== $i->getVar('block_type')) { |
|
| 218 | + // echo " <a href='" . XOOPS_URL . '/modules/system/admin.php?fct=blocksadmin&op=delete&bid=' . $i->getVar('bid') . "'><img src=" . $pathIcon16 . '/delete.png' . " alt='" . _DELETE . "' title='" . _DELETE . "'> |
|
| 219 | + // </a>"; |
|
| 220 | + // } |
|
| 221 | + |
|
| 222 | + // if ('S' !== $i->getVar('block_type') && 'M' !== $i->getVar('block_type')) { |
|
| 223 | + if (!\in_array($i->getVar('block_type'), ['M', 'S'])) { |
|
| 224 | + echo " |
|
| 225 | 225 | <a href='blocksadmin.php?op=delete&bid=" . $i->getVar('bid') . "'><img src=" . $pathIcon16 . '/delete.png' . " alt='" . \_DELETE . "' title='" . \_DELETE . "'> |
| 226 | 226 | </a>"; |
| 227 | - } |
|
| 228 | - echo " |
|
| 227 | + } |
|
| 228 | + echo " |
|
| 229 | 229 | <input type='hidden' name='oldtitle[" . $i->getVar('bid') . "]' value='" . $i->getVar('title') . "'> |
| 230 | 230 | <input type='hidden' name='oldside[" . $i->getVar('bid') . "]' value='" . $i->getVar('side') . "'> |
| 231 | 231 | <input type='hidden' name='oldweight[" . $i->getVar('bid') . "]' value='" . $i->getVar('weight') . "'> |
@@ -235,461 +235,461 @@ discard block |
||
| 235 | 235 | <input type='hidden' name='bid[" . $i->getVar('bid') . "]' value='" . $i->getVar('bid') . "'> |
| 236 | 236 | </td></tr> |
| 237 | 237 | "; |
| 238 | - $class = ('even' === $class) ? 'odd' : 'even'; |
|
| 239 | - } |
|
| 240 | - echo "<tr><td class='foot' align='center' colspan='8'> <input type='hidden' name='op' value='order'>" . $GLOBALS['xoopsSecurity']->getTokenHTML() . "<input type='submit' name='submit' value='" . \_SUBMIT . "'></td></tr></table></form><br><br>"; |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - /** |
|
| 244 | - * @param int $bid |
|
| 245 | - * @return void |
|
| 246 | - */ |
|
| 247 | - public function deleteBlock(int $bid): void |
|
| 248 | - { |
|
| 249 | - // \xoops_cp_header(); |
|
| 250 | - |
|
| 251 | - \xoops_loadLanguage('admin', 'system'); |
|
| 252 | - \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 253 | - \xoops_loadLanguage('admin/groups', 'system'); |
|
| 254 | - |
|
| 255 | - $myblock = new \XoopsBlock($bid); |
|
| 256 | - |
|
| 257 | - $sql = \sprintf('DELETE FROM %s WHERE bid = %u', $this->db->prefix('newblocks'), $bid); |
|
| 258 | - $this->db->queryF($sql) or \trigger_error($GLOBALS['xoopsDB']->error()); |
|
| 259 | - $sql = \sprintf('DELETE FROM %s WHERE block_id = %u', $this->db->prefix('block_module_link'), $bid); |
|
| 260 | - $this->db->queryF($sql) or \trigger_error($GLOBALS['xoopsDB']->error()); |
|
| 261 | - |
|
| 262 | - $this->helper->redirect('admin/blocksadmin.php?op=list', 1, _AM_DBUPDATED); |
|
| 263 | - } |
|
| 264 | - |
|
| 265 | - /** |
|
| 266 | - * @param int $bid |
|
| 267 | - * @return void |
|
| 268 | - */ |
|
| 269 | - public function cloneBlock(int $bid): void |
|
| 270 | - { |
|
| 271 | - //require __DIR__ . '/admin_header.php'; |
|
| 272 | - // \xoops_cp_header(); |
|
| 273 | - |
|
| 274 | - \xoops_loadLanguage('admin', 'system'); |
|
| 275 | - \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 276 | - \xoops_loadLanguage('admin/groups', 'system'); |
|
| 277 | - |
|
| 278 | - $myblock = new \XoopsBlock($bid); |
|
| 279 | - $sql = 'SELECT module_id FROM ' . $this->db->prefix('block_module_link') . ' WHERE block_id=' . $bid; |
|
| 280 | - $result = $this->db->query($sql); |
|
| 281 | - $modules = []; |
|
| 282 | - if ($result instanceof \mysqli_result) { |
|
| 283 | - while (false !== ($row = $this->db->fetchArray($result))) { |
|
| 284 | - $modules[] = (int)$row['module_id']; |
|
| 285 | - } |
|
| 286 | - } |
|
| 287 | - $isCustom = \in_array($myblock->getVar('block_type'), ['C', 'E']); |
|
| 288 | - $block = [ |
|
| 289 | - 'title' => $myblock->getVar('title') . ' Clone', |
|
| 290 | - 'form_title' => \constant('CO_' . $this->moduleDirNameUpper . '_' . 'BLOCKS_CLONEBLOCK'), |
|
| 291 | - 'name' => $myblock->getVar('name'), |
|
| 292 | - 'side' => $myblock->getVar('side'), |
|
| 293 | - 'weight' => $myblock->getVar('weight'), |
|
| 294 | - 'visible' => $myblock->getVar('visible'), |
|
| 295 | - 'content' => $myblock->getVar('content', 'N'), |
|
| 296 | - 'modules' => $modules, |
|
| 297 | - 'is_custom' => $isCustom, |
|
| 298 | - 'ctype' => $myblock->getVar('c_type'), |
|
| 299 | - 'bcachetime' => $myblock->getVar('bcachetime'), |
|
| 300 | - 'op' => 'clone_ok', |
|
| 301 | - 'bid' => $myblock->getVar('bid'), |
|
| 302 | - 'edit_form' => $myblock->getOptions(), |
|
| 303 | - 'template' => $myblock->getVar('template'), |
|
| 304 | - 'options' => $myblock->getVar('options'), |
|
| 305 | - ]; |
|
| 306 | - echo '<a href="blocksadmin.php">' . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'BADMIN') . '</a> <span style="font-weight:bold;">»»</span> ' . \_AM_SYSTEM_BLOCKS_CLONEBLOCK . '<br><br>'; |
|
| 307 | - // $form = new Blockform(); |
|
| 308 | - // $form->render(); |
|
| 309 | - |
|
| 310 | - echo $this->render($block); |
|
| 311 | - // xoops_cp_footer(); |
|
| 312 | - // require_once __DIR__ . '/admin_footer.php'; |
|
| 313 | - // exit(); |
|
| 314 | - } |
|
| 315 | - |
|
| 316 | - /** |
|
| 317 | - * @param int $bid |
|
| 318 | - * @param string $bside |
|
| 319 | - * @param string $bweight |
|
| 320 | - * @param string $bvisible |
|
| 321 | - * @param string $bcachetime |
|
| 322 | - * @param array|null $bmodule |
|
| 323 | - * @param array|null $options |
|
| 324 | - * @param array|null $groups |
|
| 325 | - * @return void |
|
| 326 | - */ |
|
| 327 | - public function isBlockCloned(int $bid, string $bside, string $bweight, string $bvisible, string $bcachetime, ?array $bmodule, ?array $options, ?array $groups): void |
|
| 328 | - { |
|
| 329 | - \xoops_loadLanguage('admin', 'system'); |
|
| 330 | - \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 331 | - \xoops_loadLanguage('admin/groups', 'system'); |
|
| 332 | - |
|
| 333 | - $block = new \XoopsBlock($bid); |
|
| 334 | - $clone = $block->xoopsClone(); |
|
| 335 | - if (empty($bmodule)) { |
|
| 336 | - // \xoops_cp_header(); |
|
| 337 | - \xoops_error(\sprintf(_AM_NOTSELNG, _AM_VISIBLEIN)); |
|
| 338 | - \xoops_cp_footer(); |
|
| 339 | - exit(); |
|
| 340 | - } |
|
| 341 | - $clone->setVar('side', $bside); |
|
| 342 | - $clone->setVar('weight', $bweight); |
|
| 343 | - $clone->setVar('visible', $bvisible); |
|
| 344 | - //$clone->setVar('content', $_POST['bcontent']); |
|
| 345 | - $clone->setVar('title', Request::getString('btitle', '', 'POST')); |
|
| 346 | - $clone->setVar('bcachetime', $bcachetime); |
|
| 347 | - if (\is_array($options) && (\count($options) > 0)) { |
|
| 348 | - $options = \implode('|', $options); |
|
| 349 | - $clone->setVar('options', $options); |
|
| 350 | - } |
|
| 351 | - $clone->setVar('bid', 0); |
|
| 352 | - if (\in_array($block->getVar('block_type'), ['C', 'E'])) { |
|
| 353 | - $clone->setVar('block_type', 'E'); |
|
| 354 | - } else { |
|
| 355 | - $clone->setVar('block_type', 'D'); |
|
| 356 | - } |
|
| 357 | - // $newid = $clone->store(); //see https://github.com/XOOPS/XoopsCore25/issues/1105 |
|
| 358 | - if ($clone->store()) { |
|
| 359 | - $newid = $clone->id(); //get the id of the cloned block |
|
| 360 | - } |
|
| 361 | - if (!$newid) { |
|
| 362 | - // \xoops_cp_header(); |
|
| 363 | - $clone->getHtmlErrors(); |
|
| 364 | - \xoops_cp_footer(); |
|
| 365 | - exit(); |
|
| 366 | - } |
|
| 367 | - if ('' !== $clone->getVar('template')) { |
|
| 368 | - /** @var \XoopsTplfileHandler $tplfileHandler */ |
|
| 369 | - $tplfileHandler = \xoops_getHandler('tplfile'); |
|
| 370 | - $btemplate = $tplfileHandler->find($GLOBALS['xoopsConfig']['template_set'], 'block', (string)$bid); |
|
| 371 | - if (\count($btemplate) > 0) { |
|
| 372 | - $tplclone = $btemplate[0]->xoopsClone(); |
|
| 373 | - $tplclone->setVar('tpl_id', 0); |
|
| 374 | - $tplclone->setVar('tpl_refid', $newid); |
|
| 375 | - $tplfileHandler->insert($tplclone); |
|
| 376 | - } |
|
| 377 | - } |
|
| 378 | - |
|
| 379 | - foreach ($bmodule as $bmid) { |
|
| 380 | - $sql = 'INSERT INTO ' . $this->db->prefix('block_module_link') . ' (block_id, module_id) VALUES (' . $newid . ', ' . $bmid . ')'; |
|
| 381 | - $this->db->query($sql); |
|
| 382 | - } |
|
| 383 | - //$groups = &$GLOBALS['xoopsUser']->getGroups(); |
|
| 384 | - foreach ($groups as $iValue) { |
|
| 385 | - $sql = 'INSERT INTO ' . $this->db->prefix('group_permission') . ' (gperm_groupid, gperm_itemid, gperm_modid, gperm_name) VALUES (' . $iValue . ', ' . $newid . ", 1, 'block_read')"; |
|
| 386 | - $this->db->query($sql); |
|
| 387 | - } |
|
| 388 | - $this->helper->redirect('admin/blocksadmin.php?op=list', 1, _AM_DBUPDATED); |
|
| 389 | - } |
|
| 390 | - |
|
| 391 | - /** |
|
| 392 | - * @param string $bid |
|
| 393 | - * @param string $title |
|
| 394 | - * @param string $weight |
|
| 395 | - * @param string $visible |
|
| 396 | - * @param string $side |
|
| 397 | - * @param string $bcachetime |
|
| 398 | - * @param array|null $bmodule |
|
| 399 | - * @return void |
|
| 400 | - */ |
|
| 401 | - public function setOrder(string $bid, string $title, string $weight, string $visible, string $side, string $bcachetime, ?array $bmodule = null): void |
|
| 402 | - { |
|
| 403 | - $myblock = new \XoopsBlock($bid); |
|
| 404 | - $myblock->setVar('title', $title); |
|
| 405 | - $myblock->setVar('weight', $weight); |
|
| 406 | - $myblock->setVar('visible', $visible); |
|
| 407 | - $myblock->setVar('side', $side); |
|
| 408 | - $myblock->setVar('bcachetime', $bcachetime); |
|
| 409 | - $myblock->store(); |
|
| 410 | - // /** @var \XoopsBlockHandler $blockHandler */ |
|
| 411 | - // $blockHandler = \xoops_getHandler('block'); |
|
| 412 | - // return $blockHandler->insert($myblock); |
|
| 413 | - } |
|
| 414 | - |
|
| 415 | - /** |
|
| 416 | - * @param int $bid |
|
| 417 | - * @return void |
|
| 418 | - */ |
|
| 419 | - public function editBlock(int $bid): void |
|
| 420 | - { |
|
| 421 | - // require_once \dirname(__DIR__,2) . '/admin/admin_header.php'; |
|
| 422 | - // \xoops_cp_header(); |
|
| 423 | - \xoops_loadLanguage('admin', 'system'); |
|
| 424 | - \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 425 | - \xoops_loadLanguage('admin/groups', 'system'); |
|
| 426 | - // mpu_adm_menu(); |
|
| 427 | - $myblock = new \XoopsBlock($bid); |
|
| 428 | - $sql = 'SELECT module_id FROM ' . $this->db->prefix('block_module_link') . ' WHERE block_id=' . $bid; |
|
| 429 | - $result = $this->db->query($sql); |
|
| 430 | - $modules = []; |
|
| 431 | - if ($result instanceof \mysqli_result) { |
|
| 432 | - while (false !== ($row = $this->db->fetchArray($result))) { |
|
| 433 | - $modules[] = (int)$row['module_id']; |
|
| 434 | - } |
|
| 435 | - } |
|
| 436 | - $isCustom = \in_array($myblock->getVar('block_type'), ['C', 'E']); |
|
| 437 | - $block = [ |
|
| 438 | - 'title' => $myblock->getVar('title'), |
|
| 439 | - 'form_title' => \_AM_SYSTEM_BLOCKS_EDITBLOCK, |
|
| 440 | - // 'name' => $myblock->getVar('name'), |
|
| 441 | - 'side' => $myblock->getVar('side'), |
|
| 442 | - 'weight' => $myblock->getVar('weight'), |
|
| 443 | - 'visible' => $myblock->getVar('visible'), |
|
| 444 | - 'content' => $myblock->getVar('content', 'N'), |
|
| 445 | - 'modules' => $modules, |
|
| 446 | - 'is_custom' => $isCustom, |
|
| 447 | - 'ctype' => $myblock->getVar('c_type'), |
|
| 448 | - 'bcachetime' => $myblock->getVar('bcachetime'), |
|
| 449 | - 'op' => 'edit_ok', |
|
| 450 | - 'bid' => $myblock->getVar('bid'), |
|
| 451 | - 'edit_form' => $myblock->getOptions(), |
|
| 452 | - 'template' => $myblock->getVar('template'), |
|
| 453 | - 'options' => $myblock->getVar('options'), |
|
| 454 | - ]; |
|
| 455 | - echo '<a href="blocksadmin.php">' . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'BADMIN') . '</a> <span style="font-weight:bold;">»»</span> ' . \_AM_SYSTEM_BLOCKS_EDITBLOCK . '<br><br>'; |
|
| 456 | - |
|
| 457 | - echo $this->render($block); |
|
| 458 | - } |
|
| 459 | - |
|
| 460 | - /** |
|
| 461 | - * @param int $bid |
|
| 462 | - * @param string $btitle |
|
| 463 | - * @param string $bside |
|
| 464 | - * @param string $bweight |
|
| 465 | - * @param string $bvisible |
|
| 466 | - * @param string $bcachetime |
|
| 467 | - * @param array|null $bmodule |
|
| 468 | - * @param array|null $options |
|
| 469 | - * @param array|null $groups |
|
| 470 | - * @return void |
|
| 471 | - */ |
|
| 472 | - public function updateBlock(int $bid, string $btitle, string $bside, string $bweight, string $bvisible, string $bcachetime, ?array $bmodule, ?array $options, ?array $groups): void |
|
| 473 | - { |
|
| 474 | - $myblock = new \XoopsBlock($bid); |
|
| 475 | - $myblock->setVar('title', $btitle); |
|
| 476 | - $myblock->setVar('weight', $bweight); |
|
| 477 | - $myblock->setVar('visible', $bvisible); |
|
| 478 | - $myblock->setVar('side', $bside); |
|
| 479 | - $myblock->setVar('bcachetime', $bcachetime); |
|
| 480 | - //update block options |
|
| 481 | - if (isset($options)) { |
|
| 482 | - $optionsCount = \count($options); |
|
| 483 | - if ($optionsCount > 0) { |
|
| 484 | - //Convert array values to comma-separated |
|
| 485 | - foreach ($options as $i => $iValue) { |
|
| 486 | - if (\is_array($iValue)) { |
|
| 487 | - $options[$i] = \implode(',', $iValue); |
|
| 488 | - } |
|
| 489 | - } |
|
| 490 | - $options = \implode('|', $options); |
|
| 491 | - $myblock->setVar('options', $options); |
|
| 492 | - } |
|
| 493 | - } |
|
| 494 | - $myblock->store(); |
|
| 495 | - // /** @var \XoopsBlockHandler $blockHandler */ |
|
| 496 | - // $blockHandler = \xoops_getHandler('block'); |
|
| 497 | - // $blockHandler->insert($myblock); |
|
| 498 | - |
|
| 499 | - if (!empty($bmodule) && \count($bmodule) > 0) { |
|
| 500 | - $sql = \sprintf('DELETE FROM `%s` WHERE block_id = %u', $this->db->prefix('block_module_link'), $bid); |
|
| 501 | - $this->db->query($sql); |
|
| 502 | - if (\in_array(0, $bmodule)) { |
|
| 503 | - $sql = \sprintf('INSERT INTO `%s` (block_id, module_id) VALUES (%u, %d)', $this->db->prefix('block_module_link'), $bid, 0); |
|
| 504 | - $this->db->query($sql); |
|
| 505 | - } else { |
|
| 506 | - foreach ($bmodule as $bmid) { |
|
| 507 | - $sql = \sprintf('INSERT INTO `%s` (block_id, module_id) VALUES (%u, %d)', $this->db->prefix('block_module_link'), $bid, (int)$bmid); |
|
| 508 | - $this->db->query($sql); |
|
| 509 | - } |
|
| 510 | - } |
|
| 511 | - } |
|
| 512 | - $sql = \sprintf('DELETE FROM `%s` WHERE gperm_itemid = %u', $this->db->prefix('group_permission'), $bid); |
|
| 513 | - $this->db->query($sql); |
|
| 514 | - if (!empty($groups)) { |
|
| 515 | - foreach ($groups as $grp) { |
|
| 516 | - $sql = \sprintf("INSERT INTO `%s` (gperm_groupid, gperm_itemid, gperm_modid, gperm_name) VALUES (%u, %u, 1, 'block_read')", $this->db->prefix('group_permission'), $grp, $bid); |
|
| 517 | - $this->db->query($sql); |
|
| 518 | - } |
|
| 519 | - } |
|
| 520 | - $this->helper->redirect('admin/blocksadmin.php', 1, \constant('CO_' . $this->moduleDirNameUpper . '_' . 'UPDATE_SUCCESS')); |
|
| 521 | - } |
|
| 522 | - |
|
| 523 | - /** |
|
| 524 | - * @param array $bid |
|
| 525 | - * @param array $oldtitle |
|
| 526 | - * @param array $oldside |
|
| 527 | - * @param array $oldweight |
|
| 528 | - * @param array $oldvisible |
|
| 529 | - * @param array $oldgroups |
|
| 530 | - * @param array $oldbcachetime |
|
| 531 | - * @param array $oldbmodule |
|
| 532 | - * @param array $title |
|
| 533 | - * @param array $weight |
|
| 534 | - * @param array $visible |
|
| 535 | - * @param array $side |
|
| 536 | - * @param array $bcachetime |
|
| 537 | - * @param array $groups |
|
| 538 | - * @param array $bmodule |
|
| 539 | - * @return void |
|
| 540 | - */ |
|
| 541 | - public function orderBlock( |
|
| 542 | - array $bid, array $oldtitle, array $oldside, array $oldweight, array $oldvisible, array $oldgroups, array $oldbcachetime, array $oldbmodule, array $title, array $weight, array $visible, array $side, array $bcachetime, array $groups, array $bmodule |
|
| 543 | - ): void { |
|
| 544 | - if (!$GLOBALS['xoopsSecurity']->check()) { |
|
| 545 | - \redirect_header($_SERVER['SCRIPT_NAME'], 3, \implode('<br>', $GLOBALS['xoopsSecurity']->getErrors())); |
|
| 546 | - } |
|
| 547 | - foreach (\array_keys($bid) as $i) { |
|
| 548 | - if ($oldtitle[$i] !== $title[$i] |
|
| 549 | - || $oldweight[$i] !== $weight[$i] |
|
| 550 | - || $oldvisible[$i] !== $visible[$i] |
|
| 551 | - || $oldside[$i] !== $side[$i] |
|
| 552 | - || $oldbcachetime[$i] !== $bcachetime[$i] |
|
| 553 | - || $oldbmodule[$i] !== $bmodule[$i]) { |
|
| 554 | - $this->setOrder($bid[$i], $title[$i], $weight[$i], $visible[$i], $side[$i], $bcachetime[$i], $bmodule[$i]); |
|
| 555 | - } |
|
| 556 | - if (!empty($bmodule[$i]) && \count($bmodule[$i]) > 0) { |
|
| 557 | - $sql = \sprintf('DELETE FROM `%s` WHERE block_id = %u', $this->db->prefix('block_module_link'), $bid[$i]); |
|
| 558 | - $this->db->query($sql); |
|
| 559 | - if (\in_array(0, $bmodule[$i], true)) { |
|
| 560 | - $sql = \sprintf('INSERT INTO `%s` (block_id, module_id) VALUES (%u, %d)', $this->db->prefix('block_module_link'), $bid[$i], 0); |
|
| 561 | - $this->db->query($sql); |
|
| 562 | - } else { |
|
| 563 | - foreach ($bmodule[$i] as $bmid) { |
|
| 564 | - $sql = \sprintf('INSERT INTO `%s` (block_id, module_id) VALUES (%u, %d)', $this->db->prefix('block_module_link'), $bid[$i], (int)$bmid); |
|
| 565 | - $this->db->query($sql); |
|
| 566 | - } |
|
| 567 | - } |
|
| 568 | - } |
|
| 569 | - $sql = \sprintf('DELETE FROM `%s` WHERE gperm_itemid = %u', $this->db->prefix('group_permission'), $bid[$i]); |
|
| 570 | - $this->db->query($sql); |
|
| 571 | - if (!empty($groups[$i])) { |
|
| 572 | - foreach ($groups[$i] as $grp) { |
|
| 573 | - $sql = \sprintf("INSERT INTO `%s` (gperm_groupid, gperm_itemid, gperm_modid, gperm_name) VALUES (%u, %u, 1, 'block_read')", $this->db->prefix('group_permission'), $grp, $bid[$i]); |
|
| 574 | - $this->db->query($sql); |
|
| 575 | - } |
|
| 576 | - } |
|
| 577 | - } |
|
| 578 | - |
|
| 579 | - $this->helper->redirect('admin/blocksadmin.php', 1, \constant('CO_' . $this->moduleDirNameUpper . '_' . 'UPDATE_SUCCESS')); |
|
| 580 | - } |
|
| 581 | - |
|
| 582 | - /** |
|
| 583 | - * @param array|null $block |
|
| 584 | - * @return void |
|
| 585 | - */ |
|
| 586 | - public function render(?array $block = null): void |
|
| 587 | - { |
|
| 588 | - \xoops_load('XoopsFormLoader'); |
|
| 589 | - \xoops_loadLanguage('common', $this->moduleDirNameUpper); |
|
| 590 | - |
|
| 591 | - $form = new \XoopsThemeForm($block['form_title'], 'blockform', 'blocksadmin.php', 'post', true); |
|
| 592 | - if (isset($block['name'])) { |
|
| 593 | - $form->addElement(new \XoopsFormLabel(\_AM_SYSTEM_BLOCKS_NAME, $block['name'])); |
|
| 594 | - } |
|
| 595 | - $sideSelect = new \XoopsFormSelect(\_AM_SYSTEM_BLOCKS_TYPE, 'bside', $block['side']); |
|
| 596 | - $sideSelect->addOptionArray([ |
|
| 597 | - 0 => \_AM_SYSTEM_BLOCKS_SBLEFT, |
|
| 598 | - 1 => \_AM_SYSTEM_BLOCKS_SBRIGHT, |
|
| 599 | - 3 => \_AM_SYSTEM_BLOCKS_CBLEFT, |
|
| 600 | - 4 => \_AM_SYSTEM_BLOCKS_CBRIGHT, |
|
| 601 | - 5 => \_AM_SYSTEM_BLOCKS_CBCENTER, |
|
| 602 | - 7 => \_AM_SYSTEM_BLOCKS_CBBOTTOMLEFT, |
|
| 603 | - 8 => \_AM_SYSTEM_BLOCKS_CBBOTTOMRIGHT, |
|
| 604 | - 9 => \_AM_SYSTEM_BLOCKS_CBBOTTOM, |
|
| 605 | - ]); |
|
| 606 | - $form->addElement($sideSelect); |
|
| 607 | - $form->addElement(new \XoopsFormText(\constant('CO_' . $this->moduleDirNameUpper . '_' . 'WEIGHT'), 'bweight', 2, 5, $block['weight'])); |
|
| 608 | - $form->addElement(new \XoopsFormRadioYN(\constant('CO_' . $this->moduleDirNameUpper . '_' . 'VISIBLE'), 'bvisible', $block['visible'])); |
|
| 609 | - $modSelect = new \XoopsFormSelect(\constant('CO_' . $this->moduleDirNameUpper . '_' . 'VISIBLEIN'), 'bmodule', $block['modules'], 5, true); |
|
| 610 | - /** @var \XoopsModuleHandler $moduleHandler */ |
|
| 611 | - $moduleHandler = \xoops_getHandler('module'); |
|
| 612 | - $criteria = new \CriteriaCompo(new \Criteria('hasmain', '1')); |
|
| 613 | - $criteria->add(new \Criteria('isactive', '1')); |
|
| 614 | - $moduleList = $moduleHandler->getList($criteria); |
|
| 615 | - $moduleList[-1] = \_AM_SYSTEM_BLOCKS_TOPPAGE; |
|
| 616 | - $moduleList[0] = \_AM_SYSTEM_BLOCKS_ALLPAGES; |
|
| 617 | - \ksort($moduleList); |
|
| 618 | - $modSelect->addOptionArray($moduleList); |
|
| 619 | - $form->addElement($modSelect); |
|
| 620 | - $form->addElement(new \XoopsFormText(\_AM_SYSTEM_BLOCKS_TITLE, 'btitle', 50, 255, $block['title']), false); |
|
| 621 | - if ($block['is_custom']) { |
|
| 622 | - $textarea = new \XoopsFormDhtmlTextArea(\_AM_SYSTEM_BLOCKS_CONTENT, 'bcontent', $block['content'], 15, 70); |
|
| 623 | - $textarea->setDescription('<span style="font-size:x-small;font-weight:bold;">' . \_AM_SYSTEM_BLOCKS_USEFULTAGS . '</span><br><span style="font-size:x-small;font-weight:normal;">' . \sprintf(_AM_BLOCKTAG1, '{X_SITEURL}', XOOPS_URL . '/') . '</span>'); |
|
| 624 | - $form->addElement($textarea, true); |
|
| 625 | - $ctypeSelect = new \XoopsFormSelect(\_AM_SYSTEM_BLOCKS_CTYPE, 'bctype', $block['ctype']); |
|
| 626 | - $ctypeSelect->addOptionArray([ |
|
| 627 | - 'H' => \_AM_SYSTEM_BLOCKS_HTML, |
|
| 628 | - 'P' => \_AM_SYSTEM_BLOCKS_PHP, |
|
| 629 | - 'S' => \_AM_SYSTEM_BLOCKS_AFWSMILE, |
|
| 630 | - 'T' => \_AM_SYSTEM_BLOCKS_AFNOSMILE, |
|
| 631 | - ]); |
|
| 632 | - $form->addElement($ctypeSelect); |
|
| 633 | - } else { |
|
| 634 | - if ('' !== $block['template']) { |
|
| 635 | - /** @var \XoopsTplfileHandler $tplfileHandler */ |
|
| 636 | - $tplfileHandler = \xoops_getHandler('tplfile'); |
|
| 637 | - $btemplate = $tplfileHandler->find($GLOBALS['xoopsConfig']['template_set'], 'block', $block['bid']); |
|
| 638 | - if (\count($btemplate) > 0) { |
|
| 639 | - $form->addElement(new \XoopsFormLabel(\_AM_SYSTEM_BLOCKS_CONTENT, '<a href="' . XOOPS_URL . '/modules/system/admin.php?fct=tplsets&op=edittpl&id=' . $btemplate[0]->getVar('tpl_id') . '">' . \_AM_SYSTEM_BLOCKS_EDITTPL . '</a>')); |
|
| 640 | - } else { |
|
| 641 | - $btemplate2 = $tplfileHandler->find('default', 'block', $block['bid']); |
|
| 642 | - if (\count($btemplate2) > 0) { |
|
| 643 | - $form->addElement(new \XoopsFormLabel(\_AM_SYSTEM_BLOCKS_CONTENT, '<a href="' . XOOPS_URL . '/modules/system/admin.php?fct=tplsets&op=edittpl&id=' . $btemplate2[0]->getVar('tpl_id') . '" target="_blank">' . \_AM_SYSTEM_BLOCKS_EDITTPL . '</a>')); |
|
| 644 | - } |
|
| 645 | - } |
|
| 646 | - } |
|
| 647 | - if (false !== $block['edit_form']) { |
|
| 648 | - $form->addElement(new \XoopsFormLabel(\_AM_SYSTEM_BLOCKS_OPTIONS, $block['edit_form'])); |
|
| 649 | - } |
|
| 650 | - } |
|
| 651 | - $cache_select = new \XoopsFormSelect(\_AM_SYSTEM_BLOCKS_BCACHETIME, 'bcachetime', $block['bcachetime']); |
|
| 652 | - $cache_select->addOptionArray([ |
|
| 653 | - 0 => \_NOCACHE, |
|
| 654 | - 30 => \sprintf(\_SECONDS, 30), |
|
| 655 | - 60 => \_MINUTE, |
|
| 656 | - 300 => \sprintf(\_MINUTES, 5), |
|
| 657 | - 1800 => \sprintf(\_MINUTES, 30), |
|
| 658 | - 3600 => \_HOUR, |
|
| 659 | - 18000 => \sprintf(\_HOURS, 5), |
|
| 660 | - 86400 => \_DAY, |
|
| 661 | - 259200 => \sprintf(\_DAYS, 3), |
|
| 662 | - 604800 => \_WEEK, |
|
| 663 | - 2592000 => \_MONTH, |
|
| 664 | - ]); |
|
| 665 | - $form->addElement($cache_select); |
|
| 666 | - |
|
| 667 | - /** @var \XoopsGroupPermHandler $grouppermHandler */ |
|
| 668 | - $grouppermHandler = \xoops_getHandler('groupperm'); |
|
| 669 | - $groups = $grouppermHandler->getGroupIds('block_read', $block['bid']); |
|
| 670 | - |
|
| 671 | - $form->addElement(new \XoopsFormSelectGroup(\_AM_SYSTEM_BLOCKS_GROUP, 'groups', true, $groups, 5, true)); |
|
| 672 | - |
|
| 673 | - if (isset($block['bid'])) { |
|
| 674 | - $form->addElement(new \XoopsFormHidden('bid', $block['bid'])); |
|
| 675 | - } |
|
| 676 | - $form->addElement(new \XoopsFormHidden('op', $block['op'])); |
|
| 677 | - $form->addElement(new \XoopsFormHidden('fct', 'blocksadmin')); |
|
| 678 | - $buttonTray = new \XoopsFormElementTray('', ' '); |
|
| 679 | - if ($block['is_custom']) { |
|
| 680 | - $buttonTray->addElement(new \XoopsFormButton('', 'previewblock', \_PREVIEW, 'submit')); |
|
| 681 | - } |
|
| 682 | - |
|
| 683 | - //Submit buttons |
|
| 684 | - $buttonTray = new \XoopsFormElementTray('', ''); |
|
| 685 | - $submitButton = new \XoopsFormButton('', 'submitblock', \_SUBMIT, 'submit'); |
|
| 686 | - $buttonTray->addElement($submitButton); |
|
| 687 | - |
|
| 688 | - $cancelButton = new \XoopsFormButton('', '', \_CANCEL, 'button'); |
|
| 689 | - $cancelButton->setExtra('onclick="history.go(-1)"'); |
|
| 690 | - $buttonTray->addElement($cancelButton); |
|
| 691 | - |
|
| 692 | - $form->addElement($buttonTray); |
|
| 693 | - $form->display(); |
|
| 694 | - } |
|
| 238 | + $class = ('even' === $class) ? 'odd' : 'even'; |
|
| 239 | + } |
|
| 240 | + echo "<tr><td class='foot' align='center' colspan='8'> <input type='hidden' name='op' value='order'>" . $GLOBALS['xoopsSecurity']->getTokenHTML() . "<input type='submit' name='submit' value='" . \_SUBMIT . "'></td></tr></table></form><br><br>"; |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + /** |
|
| 244 | + * @param int $bid |
|
| 245 | + * @return void |
|
| 246 | + */ |
|
| 247 | + public function deleteBlock(int $bid): void |
|
| 248 | + { |
|
| 249 | + // \xoops_cp_header(); |
|
| 250 | + |
|
| 251 | + \xoops_loadLanguage('admin', 'system'); |
|
| 252 | + \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 253 | + \xoops_loadLanguage('admin/groups', 'system'); |
|
| 254 | + |
|
| 255 | + $myblock = new \XoopsBlock($bid); |
|
| 256 | + |
|
| 257 | + $sql = \sprintf('DELETE FROM %s WHERE bid = %u', $this->db->prefix('newblocks'), $bid); |
|
| 258 | + $this->db->queryF($sql) or \trigger_error($GLOBALS['xoopsDB']->error()); |
|
| 259 | + $sql = \sprintf('DELETE FROM %s WHERE block_id = %u', $this->db->prefix('block_module_link'), $bid); |
|
| 260 | + $this->db->queryF($sql) or \trigger_error($GLOBALS['xoopsDB']->error()); |
|
| 261 | + |
|
| 262 | + $this->helper->redirect('admin/blocksadmin.php?op=list', 1, _AM_DBUPDATED); |
|
| 263 | + } |
|
| 264 | + |
|
| 265 | + /** |
|
| 266 | + * @param int $bid |
|
| 267 | + * @return void |
|
| 268 | + */ |
|
| 269 | + public function cloneBlock(int $bid): void |
|
| 270 | + { |
|
| 271 | + //require __DIR__ . '/admin_header.php'; |
|
| 272 | + // \xoops_cp_header(); |
|
| 273 | + |
|
| 274 | + \xoops_loadLanguage('admin', 'system'); |
|
| 275 | + \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 276 | + \xoops_loadLanguage('admin/groups', 'system'); |
|
| 277 | + |
|
| 278 | + $myblock = new \XoopsBlock($bid); |
|
| 279 | + $sql = 'SELECT module_id FROM ' . $this->db->prefix('block_module_link') . ' WHERE block_id=' . $bid; |
|
| 280 | + $result = $this->db->query($sql); |
|
| 281 | + $modules = []; |
|
| 282 | + if ($result instanceof \mysqli_result) { |
|
| 283 | + while (false !== ($row = $this->db->fetchArray($result))) { |
|
| 284 | + $modules[] = (int)$row['module_id']; |
|
| 285 | + } |
|
| 286 | + } |
|
| 287 | + $isCustom = \in_array($myblock->getVar('block_type'), ['C', 'E']); |
|
| 288 | + $block = [ |
|
| 289 | + 'title' => $myblock->getVar('title') . ' Clone', |
|
| 290 | + 'form_title' => \constant('CO_' . $this->moduleDirNameUpper . '_' . 'BLOCKS_CLONEBLOCK'), |
|
| 291 | + 'name' => $myblock->getVar('name'), |
|
| 292 | + 'side' => $myblock->getVar('side'), |
|
| 293 | + 'weight' => $myblock->getVar('weight'), |
|
| 294 | + 'visible' => $myblock->getVar('visible'), |
|
| 295 | + 'content' => $myblock->getVar('content', 'N'), |
|
| 296 | + 'modules' => $modules, |
|
| 297 | + 'is_custom' => $isCustom, |
|
| 298 | + 'ctype' => $myblock->getVar('c_type'), |
|
| 299 | + 'bcachetime' => $myblock->getVar('bcachetime'), |
|
| 300 | + 'op' => 'clone_ok', |
|
| 301 | + 'bid' => $myblock->getVar('bid'), |
|
| 302 | + 'edit_form' => $myblock->getOptions(), |
|
| 303 | + 'template' => $myblock->getVar('template'), |
|
| 304 | + 'options' => $myblock->getVar('options'), |
|
| 305 | + ]; |
|
| 306 | + echo '<a href="blocksadmin.php">' . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'BADMIN') . '</a> <span style="font-weight:bold;">»»</span> ' . \_AM_SYSTEM_BLOCKS_CLONEBLOCK . '<br><br>'; |
|
| 307 | + // $form = new Blockform(); |
|
| 308 | + // $form->render(); |
|
| 309 | + |
|
| 310 | + echo $this->render($block); |
|
| 311 | + // xoops_cp_footer(); |
|
| 312 | + // require_once __DIR__ . '/admin_footer.php'; |
|
| 313 | + // exit(); |
|
| 314 | + } |
|
| 315 | + |
|
| 316 | + /** |
|
| 317 | + * @param int $bid |
|
| 318 | + * @param string $bside |
|
| 319 | + * @param string $bweight |
|
| 320 | + * @param string $bvisible |
|
| 321 | + * @param string $bcachetime |
|
| 322 | + * @param array|null $bmodule |
|
| 323 | + * @param array|null $options |
|
| 324 | + * @param array|null $groups |
|
| 325 | + * @return void |
|
| 326 | + */ |
|
| 327 | + public function isBlockCloned(int $bid, string $bside, string $bweight, string $bvisible, string $bcachetime, ?array $bmodule, ?array $options, ?array $groups): void |
|
| 328 | + { |
|
| 329 | + \xoops_loadLanguage('admin', 'system'); |
|
| 330 | + \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 331 | + \xoops_loadLanguage('admin/groups', 'system'); |
|
| 332 | + |
|
| 333 | + $block = new \XoopsBlock($bid); |
|
| 334 | + $clone = $block->xoopsClone(); |
|
| 335 | + if (empty($bmodule)) { |
|
| 336 | + // \xoops_cp_header(); |
|
| 337 | + \xoops_error(\sprintf(_AM_NOTSELNG, _AM_VISIBLEIN)); |
|
| 338 | + \xoops_cp_footer(); |
|
| 339 | + exit(); |
|
| 340 | + } |
|
| 341 | + $clone->setVar('side', $bside); |
|
| 342 | + $clone->setVar('weight', $bweight); |
|
| 343 | + $clone->setVar('visible', $bvisible); |
|
| 344 | + //$clone->setVar('content', $_POST['bcontent']); |
|
| 345 | + $clone->setVar('title', Request::getString('btitle', '', 'POST')); |
|
| 346 | + $clone->setVar('bcachetime', $bcachetime); |
|
| 347 | + if (\is_array($options) && (\count($options) > 0)) { |
|
| 348 | + $options = \implode('|', $options); |
|
| 349 | + $clone->setVar('options', $options); |
|
| 350 | + } |
|
| 351 | + $clone->setVar('bid', 0); |
|
| 352 | + if (\in_array($block->getVar('block_type'), ['C', 'E'])) { |
|
| 353 | + $clone->setVar('block_type', 'E'); |
|
| 354 | + } else { |
|
| 355 | + $clone->setVar('block_type', 'D'); |
|
| 356 | + } |
|
| 357 | + // $newid = $clone->store(); //see https://github.com/XOOPS/XoopsCore25/issues/1105 |
|
| 358 | + if ($clone->store()) { |
|
| 359 | + $newid = $clone->id(); //get the id of the cloned block |
|
| 360 | + } |
|
| 361 | + if (!$newid) { |
|
| 362 | + // \xoops_cp_header(); |
|
| 363 | + $clone->getHtmlErrors(); |
|
| 364 | + \xoops_cp_footer(); |
|
| 365 | + exit(); |
|
| 366 | + } |
|
| 367 | + if ('' !== $clone->getVar('template')) { |
|
| 368 | + /** @var \XoopsTplfileHandler $tplfileHandler */ |
|
| 369 | + $tplfileHandler = \xoops_getHandler('tplfile'); |
|
| 370 | + $btemplate = $tplfileHandler->find($GLOBALS['xoopsConfig']['template_set'], 'block', (string)$bid); |
|
| 371 | + if (\count($btemplate) > 0) { |
|
| 372 | + $tplclone = $btemplate[0]->xoopsClone(); |
|
| 373 | + $tplclone->setVar('tpl_id', 0); |
|
| 374 | + $tplclone->setVar('tpl_refid', $newid); |
|
| 375 | + $tplfileHandler->insert($tplclone); |
|
| 376 | + } |
|
| 377 | + } |
|
| 378 | + |
|
| 379 | + foreach ($bmodule as $bmid) { |
|
| 380 | + $sql = 'INSERT INTO ' . $this->db->prefix('block_module_link') . ' (block_id, module_id) VALUES (' . $newid . ', ' . $bmid . ')'; |
|
| 381 | + $this->db->query($sql); |
|
| 382 | + } |
|
| 383 | + //$groups = &$GLOBALS['xoopsUser']->getGroups(); |
|
| 384 | + foreach ($groups as $iValue) { |
|
| 385 | + $sql = 'INSERT INTO ' . $this->db->prefix('group_permission') . ' (gperm_groupid, gperm_itemid, gperm_modid, gperm_name) VALUES (' . $iValue . ', ' . $newid . ", 1, 'block_read')"; |
|
| 386 | + $this->db->query($sql); |
|
| 387 | + } |
|
| 388 | + $this->helper->redirect('admin/blocksadmin.php?op=list', 1, _AM_DBUPDATED); |
|
| 389 | + } |
|
| 390 | + |
|
| 391 | + /** |
|
| 392 | + * @param string $bid |
|
| 393 | + * @param string $title |
|
| 394 | + * @param string $weight |
|
| 395 | + * @param string $visible |
|
| 396 | + * @param string $side |
|
| 397 | + * @param string $bcachetime |
|
| 398 | + * @param array|null $bmodule |
|
| 399 | + * @return void |
|
| 400 | + */ |
|
| 401 | + public function setOrder(string $bid, string $title, string $weight, string $visible, string $side, string $bcachetime, ?array $bmodule = null): void |
|
| 402 | + { |
|
| 403 | + $myblock = new \XoopsBlock($bid); |
|
| 404 | + $myblock->setVar('title', $title); |
|
| 405 | + $myblock->setVar('weight', $weight); |
|
| 406 | + $myblock->setVar('visible', $visible); |
|
| 407 | + $myblock->setVar('side', $side); |
|
| 408 | + $myblock->setVar('bcachetime', $bcachetime); |
|
| 409 | + $myblock->store(); |
|
| 410 | + // /** @var \XoopsBlockHandler $blockHandler */ |
|
| 411 | + // $blockHandler = \xoops_getHandler('block'); |
|
| 412 | + // return $blockHandler->insert($myblock); |
|
| 413 | + } |
|
| 414 | + |
|
| 415 | + /** |
|
| 416 | + * @param int $bid |
|
| 417 | + * @return void |
|
| 418 | + */ |
|
| 419 | + public function editBlock(int $bid): void |
|
| 420 | + { |
|
| 421 | + // require_once \dirname(__DIR__,2) . '/admin/admin_header.php'; |
|
| 422 | + // \xoops_cp_header(); |
|
| 423 | + \xoops_loadLanguage('admin', 'system'); |
|
| 424 | + \xoops_loadLanguage('admin/blocksadmin', 'system'); |
|
| 425 | + \xoops_loadLanguage('admin/groups', 'system'); |
|
| 426 | + // mpu_adm_menu(); |
|
| 427 | + $myblock = new \XoopsBlock($bid); |
|
| 428 | + $sql = 'SELECT module_id FROM ' . $this->db->prefix('block_module_link') . ' WHERE block_id=' . $bid; |
|
| 429 | + $result = $this->db->query($sql); |
|
| 430 | + $modules = []; |
|
| 431 | + if ($result instanceof \mysqli_result) { |
|
| 432 | + while (false !== ($row = $this->db->fetchArray($result))) { |
|
| 433 | + $modules[] = (int)$row['module_id']; |
|
| 434 | + } |
|
| 435 | + } |
|
| 436 | + $isCustom = \in_array($myblock->getVar('block_type'), ['C', 'E']); |
|
| 437 | + $block = [ |
|
| 438 | + 'title' => $myblock->getVar('title'), |
|
| 439 | + 'form_title' => \_AM_SYSTEM_BLOCKS_EDITBLOCK, |
|
| 440 | + // 'name' => $myblock->getVar('name'), |
|
| 441 | + 'side' => $myblock->getVar('side'), |
|
| 442 | + 'weight' => $myblock->getVar('weight'), |
|
| 443 | + 'visible' => $myblock->getVar('visible'), |
|
| 444 | + 'content' => $myblock->getVar('content', 'N'), |
|
| 445 | + 'modules' => $modules, |
|
| 446 | + 'is_custom' => $isCustom, |
|
| 447 | + 'ctype' => $myblock->getVar('c_type'), |
|
| 448 | + 'bcachetime' => $myblock->getVar('bcachetime'), |
|
| 449 | + 'op' => 'edit_ok', |
|
| 450 | + 'bid' => $myblock->getVar('bid'), |
|
| 451 | + 'edit_form' => $myblock->getOptions(), |
|
| 452 | + 'template' => $myblock->getVar('template'), |
|
| 453 | + 'options' => $myblock->getVar('options'), |
|
| 454 | + ]; |
|
| 455 | + echo '<a href="blocksadmin.php">' . \constant('CO_' . $this->moduleDirNameUpper . '_' . 'BADMIN') . '</a> <span style="font-weight:bold;">»»</span> ' . \_AM_SYSTEM_BLOCKS_EDITBLOCK . '<br><br>'; |
|
| 456 | + |
|
| 457 | + echo $this->render($block); |
|
| 458 | + } |
|
| 459 | + |
|
| 460 | + /** |
|
| 461 | + * @param int $bid |
|
| 462 | + * @param string $btitle |
|
| 463 | + * @param string $bside |
|
| 464 | + * @param string $bweight |
|
| 465 | + * @param string $bvisible |
|
| 466 | + * @param string $bcachetime |
|
| 467 | + * @param array|null $bmodule |
|
| 468 | + * @param array|null $options |
|
| 469 | + * @param array|null $groups |
|
| 470 | + * @return void |
|
| 471 | + */ |
|
| 472 | + public function updateBlock(int $bid, string $btitle, string $bside, string $bweight, string $bvisible, string $bcachetime, ?array $bmodule, ?array $options, ?array $groups): void |
|
| 473 | + { |
|
| 474 | + $myblock = new \XoopsBlock($bid); |
|
| 475 | + $myblock->setVar('title', $btitle); |
|
| 476 | + $myblock->setVar('weight', $bweight); |
|
| 477 | + $myblock->setVar('visible', $bvisible); |
|
| 478 | + $myblock->setVar('side', $bside); |
|
| 479 | + $myblock->setVar('bcachetime', $bcachetime); |
|
| 480 | + //update block options |
|
| 481 | + if (isset($options)) { |
|
| 482 | + $optionsCount = \count($options); |
|
| 483 | + if ($optionsCount > 0) { |
|
| 484 | + //Convert array values to comma-separated |
|
| 485 | + foreach ($options as $i => $iValue) { |
|
| 486 | + if (\is_array($iValue)) { |
|
| 487 | + $options[$i] = \implode(',', $iValue); |
|
| 488 | + } |
|
| 489 | + } |
|
| 490 | + $options = \implode('|', $options); |
|
| 491 | + $myblock->setVar('options', $options); |
|
| 492 | + } |
|
| 493 | + } |
|
| 494 | + $myblock->store(); |
|
| 495 | + // /** @var \XoopsBlockHandler $blockHandler */ |
|
| 496 | + // $blockHandler = \xoops_getHandler('block'); |
|
| 497 | + // $blockHandler->insert($myblock); |
|
| 498 | + |
|
| 499 | + if (!empty($bmodule) && \count($bmodule) > 0) { |
|
| 500 | + $sql = \sprintf('DELETE FROM `%s` WHERE block_id = %u', $this->db->prefix('block_module_link'), $bid); |
|
| 501 | + $this->db->query($sql); |
|
| 502 | + if (\in_array(0, $bmodule)) { |
|
| 503 | + $sql = \sprintf('INSERT INTO `%s` (block_id, module_id) VALUES (%u, %d)', $this->db->prefix('block_module_link'), $bid, 0); |
|
| 504 | + $this->db->query($sql); |
|
| 505 | + } else { |
|
| 506 | + foreach ($bmodule as $bmid) { |
|
| 507 | + $sql = \sprintf('INSERT INTO `%s` (block_id, module_id) VALUES (%u, %d)', $this->db->prefix('block_module_link'), $bid, (int)$bmid); |
|
| 508 | + $this->db->query($sql); |
|
| 509 | + } |
|
| 510 | + } |
|
| 511 | + } |
|
| 512 | + $sql = \sprintf('DELETE FROM `%s` WHERE gperm_itemid = %u', $this->db->prefix('group_permission'), $bid); |
|
| 513 | + $this->db->query($sql); |
|
| 514 | + if (!empty($groups)) { |
|
| 515 | + foreach ($groups as $grp) { |
|
| 516 | + $sql = \sprintf("INSERT INTO `%s` (gperm_groupid, gperm_itemid, gperm_modid, gperm_name) VALUES (%u, %u, 1, 'block_read')", $this->db->prefix('group_permission'), $grp, $bid); |
|
| 517 | + $this->db->query($sql); |
|
| 518 | + } |
|
| 519 | + } |
|
| 520 | + $this->helper->redirect('admin/blocksadmin.php', 1, \constant('CO_' . $this->moduleDirNameUpper . '_' . 'UPDATE_SUCCESS')); |
|
| 521 | + } |
|
| 522 | + |
|
| 523 | + /** |
|
| 524 | + * @param array $bid |
|
| 525 | + * @param array $oldtitle |
|
| 526 | + * @param array $oldside |
|
| 527 | + * @param array $oldweight |
|
| 528 | + * @param array $oldvisible |
|
| 529 | + * @param array $oldgroups |
|
| 530 | + * @param array $oldbcachetime |
|
| 531 | + * @param array $oldbmodule |
|
| 532 | + * @param array $title |
|
| 533 | + * @param array $weight |
|
| 534 | + * @param array $visible |
|
| 535 | + * @param array $side |
|
| 536 | + * @param array $bcachetime |
|
| 537 | + * @param array $groups |
|
| 538 | + * @param array $bmodule |
|
| 539 | + * @return void |
|
| 540 | + */ |
|
| 541 | + public function orderBlock( |
|
| 542 | + array $bid, array $oldtitle, array $oldside, array $oldweight, array $oldvisible, array $oldgroups, array $oldbcachetime, array $oldbmodule, array $title, array $weight, array $visible, array $side, array $bcachetime, array $groups, array $bmodule |
|
| 543 | + ): void { |
|
| 544 | + if (!$GLOBALS['xoopsSecurity']->check()) { |
|
| 545 | + \redirect_header($_SERVER['SCRIPT_NAME'], 3, \implode('<br>', $GLOBALS['xoopsSecurity']->getErrors())); |
|
| 546 | + } |
|
| 547 | + foreach (\array_keys($bid) as $i) { |
|
| 548 | + if ($oldtitle[$i] !== $title[$i] |
|
| 549 | + || $oldweight[$i] !== $weight[$i] |
|
| 550 | + || $oldvisible[$i] !== $visible[$i] |
|
| 551 | + || $oldside[$i] !== $side[$i] |
|
| 552 | + || $oldbcachetime[$i] !== $bcachetime[$i] |
|
| 553 | + || $oldbmodule[$i] !== $bmodule[$i]) { |
|
| 554 | + $this->setOrder($bid[$i], $title[$i], $weight[$i], $visible[$i], $side[$i], $bcachetime[$i], $bmodule[$i]); |
|
| 555 | + } |
|
| 556 | + if (!empty($bmodule[$i]) && \count($bmodule[$i]) > 0) { |
|
| 557 | + $sql = \sprintf('DELETE FROM `%s` WHERE block_id = %u', $this->db->prefix('block_module_link'), $bid[$i]); |
|
| 558 | + $this->db->query($sql); |
|
| 559 | + if (\in_array(0, $bmodule[$i], true)) { |
|
| 560 | + $sql = \sprintf('INSERT INTO `%s` (block_id, module_id) VALUES (%u, %d)', $this->db->prefix('block_module_link'), $bid[$i], 0); |
|
| 561 | + $this->db->query($sql); |
|
| 562 | + } else { |
|
| 563 | + foreach ($bmodule[$i] as $bmid) { |
|
| 564 | + $sql = \sprintf('INSERT INTO `%s` (block_id, module_id) VALUES (%u, %d)', $this->db->prefix('block_module_link'), $bid[$i], (int)$bmid); |
|
| 565 | + $this->db->query($sql); |
|
| 566 | + } |
|
| 567 | + } |
|
| 568 | + } |
|
| 569 | + $sql = \sprintf('DELETE FROM `%s` WHERE gperm_itemid = %u', $this->db->prefix('group_permission'), $bid[$i]); |
|
| 570 | + $this->db->query($sql); |
|
| 571 | + if (!empty($groups[$i])) { |
|
| 572 | + foreach ($groups[$i] as $grp) { |
|
| 573 | + $sql = \sprintf("INSERT INTO `%s` (gperm_groupid, gperm_itemid, gperm_modid, gperm_name) VALUES (%u, %u, 1, 'block_read')", $this->db->prefix('group_permission'), $grp, $bid[$i]); |
|
| 574 | + $this->db->query($sql); |
|
| 575 | + } |
|
| 576 | + } |
|
| 577 | + } |
|
| 578 | + |
|
| 579 | + $this->helper->redirect('admin/blocksadmin.php', 1, \constant('CO_' . $this->moduleDirNameUpper . '_' . 'UPDATE_SUCCESS')); |
|
| 580 | + } |
|
| 581 | + |
|
| 582 | + /** |
|
| 583 | + * @param array|null $block |
|
| 584 | + * @return void |
|
| 585 | + */ |
|
| 586 | + public function render(?array $block = null): void |
|
| 587 | + { |
|
| 588 | + \xoops_load('XoopsFormLoader'); |
|
| 589 | + \xoops_loadLanguage('common', $this->moduleDirNameUpper); |
|
| 590 | + |
|
| 591 | + $form = new \XoopsThemeForm($block['form_title'], 'blockform', 'blocksadmin.php', 'post', true); |
|
| 592 | + if (isset($block['name'])) { |
|
| 593 | + $form->addElement(new \XoopsFormLabel(\_AM_SYSTEM_BLOCKS_NAME, $block['name'])); |
|
| 594 | + } |
|
| 595 | + $sideSelect = new \XoopsFormSelect(\_AM_SYSTEM_BLOCKS_TYPE, 'bside', $block['side']); |
|
| 596 | + $sideSelect->addOptionArray([ |
|
| 597 | + 0 => \_AM_SYSTEM_BLOCKS_SBLEFT, |
|
| 598 | + 1 => \_AM_SYSTEM_BLOCKS_SBRIGHT, |
|
| 599 | + 3 => \_AM_SYSTEM_BLOCKS_CBLEFT, |
|
| 600 | + 4 => \_AM_SYSTEM_BLOCKS_CBRIGHT, |
|
| 601 | + 5 => \_AM_SYSTEM_BLOCKS_CBCENTER, |
|
| 602 | + 7 => \_AM_SYSTEM_BLOCKS_CBBOTTOMLEFT, |
|
| 603 | + 8 => \_AM_SYSTEM_BLOCKS_CBBOTTOMRIGHT, |
|
| 604 | + 9 => \_AM_SYSTEM_BLOCKS_CBBOTTOM, |
|
| 605 | + ]); |
|
| 606 | + $form->addElement($sideSelect); |
|
| 607 | + $form->addElement(new \XoopsFormText(\constant('CO_' . $this->moduleDirNameUpper . '_' . 'WEIGHT'), 'bweight', 2, 5, $block['weight'])); |
|
| 608 | + $form->addElement(new \XoopsFormRadioYN(\constant('CO_' . $this->moduleDirNameUpper . '_' . 'VISIBLE'), 'bvisible', $block['visible'])); |
|
| 609 | + $modSelect = new \XoopsFormSelect(\constant('CO_' . $this->moduleDirNameUpper . '_' . 'VISIBLEIN'), 'bmodule', $block['modules'], 5, true); |
|
| 610 | + /** @var \XoopsModuleHandler $moduleHandler */ |
|
| 611 | + $moduleHandler = \xoops_getHandler('module'); |
|
| 612 | + $criteria = new \CriteriaCompo(new \Criteria('hasmain', '1')); |
|
| 613 | + $criteria->add(new \Criteria('isactive', '1')); |
|
| 614 | + $moduleList = $moduleHandler->getList($criteria); |
|
| 615 | + $moduleList[-1] = \_AM_SYSTEM_BLOCKS_TOPPAGE; |
|
| 616 | + $moduleList[0] = \_AM_SYSTEM_BLOCKS_ALLPAGES; |
|
| 617 | + \ksort($moduleList); |
|
| 618 | + $modSelect->addOptionArray($moduleList); |
|
| 619 | + $form->addElement($modSelect); |
|
| 620 | + $form->addElement(new \XoopsFormText(\_AM_SYSTEM_BLOCKS_TITLE, 'btitle', 50, 255, $block['title']), false); |
|
| 621 | + if ($block['is_custom']) { |
|
| 622 | + $textarea = new \XoopsFormDhtmlTextArea(\_AM_SYSTEM_BLOCKS_CONTENT, 'bcontent', $block['content'], 15, 70); |
|
| 623 | + $textarea->setDescription('<span style="font-size:x-small;font-weight:bold;">' . \_AM_SYSTEM_BLOCKS_USEFULTAGS . '</span><br><span style="font-size:x-small;font-weight:normal;">' . \sprintf(_AM_BLOCKTAG1, '{X_SITEURL}', XOOPS_URL . '/') . '</span>'); |
|
| 624 | + $form->addElement($textarea, true); |
|
| 625 | + $ctypeSelect = new \XoopsFormSelect(\_AM_SYSTEM_BLOCKS_CTYPE, 'bctype', $block['ctype']); |
|
| 626 | + $ctypeSelect->addOptionArray([ |
|
| 627 | + 'H' => \_AM_SYSTEM_BLOCKS_HTML, |
|
| 628 | + 'P' => \_AM_SYSTEM_BLOCKS_PHP, |
|
| 629 | + 'S' => \_AM_SYSTEM_BLOCKS_AFWSMILE, |
|
| 630 | + 'T' => \_AM_SYSTEM_BLOCKS_AFNOSMILE, |
|
| 631 | + ]); |
|
| 632 | + $form->addElement($ctypeSelect); |
|
| 633 | + } else { |
|
| 634 | + if ('' !== $block['template']) { |
|
| 635 | + /** @var \XoopsTplfileHandler $tplfileHandler */ |
|
| 636 | + $tplfileHandler = \xoops_getHandler('tplfile'); |
|
| 637 | + $btemplate = $tplfileHandler->find($GLOBALS['xoopsConfig']['template_set'], 'block', $block['bid']); |
|
| 638 | + if (\count($btemplate) > 0) { |
|
| 639 | + $form->addElement(new \XoopsFormLabel(\_AM_SYSTEM_BLOCKS_CONTENT, '<a href="' . XOOPS_URL . '/modules/system/admin.php?fct=tplsets&op=edittpl&id=' . $btemplate[0]->getVar('tpl_id') . '">' . \_AM_SYSTEM_BLOCKS_EDITTPL . '</a>')); |
|
| 640 | + } else { |
|
| 641 | + $btemplate2 = $tplfileHandler->find('default', 'block', $block['bid']); |
|
| 642 | + if (\count($btemplate2) > 0) { |
|
| 643 | + $form->addElement(new \XoopsFormLabel(\_AM_SYSTEM_BLOCKS_CONTENT, '<a href="' . XOOPS_URL . '/modules/system/admin.php?fct=tplsets&op=edittpl&id=' . $btemplate2[0]->getVar('tpl_id') . '" target="_blank">' . \_AM_SYSTEM_BLOCKS_EDITTPL . '</a>')); |
|
| 644 | + } |
|
| 645 | + } |
|
| 646 | + } |
|
| 647 | + if (false !== $block['edit_form']) { |
|
| 648 | + $form->addElement(new \XoopsFormLabel(\_AM_SYSTEM_BLOCKS_OPTIONS, $block['edit_form'])); |
|
| 649 | + } |
|
| 650 | + } |
|
| 651 | + $cache_select = new \XoopsFormSelect(\_AM_SYSTEM_BLOCKS_BCACHETIME, 'bcachetime', $block['bcachetime']); |
|
| 652 | + $cache_select->addOptionArray([ |
|
| 653 | + 0 => \_NOCACHE, |
|
| 654 | + 30 => \sprintf(\_SECONDS, 30), |
|
| 655 | + 60 => \_MINUTE, |
|
| 656 | + 300 => \sprintf(\_MINUTES, 5), |
|
| 657 | + 1800 => \sprintf(\_MINUTES, 30), |
|
| 658 | + 3600 => \_HOUR, |
|
| 659 | + 18000 => \sprintf(\_HOURS, 5), |
|
| 660 | + 86400 => \_DAY, |
|
| 661 | + 259200 => \sprintf(\_DAYS, 3), |
|
| 662 | + 604800 => \_WEEK, |
|
| 663 | + 2592000 => \_MONTH, |
|
| 664 | + ]); |
|
| 665 | + $form->addElement($cache_select); |
|
| 666 | + |
|
| 667 | + /** @var \XoopsGroupPermHandler $grouppermHandler */ |
|
| 668 | + $grouppermHandler = \xoops_getHandler('groupperm'); |
|
| 669 | + $groups = $grouppermHandler->getGroupIds('block_read', $block['bid']); |
|
| 670 | + |
|
| 671 | + $form->addElement(new \XoopsFormSelectGroup(\_AM_SYSTEM_BLOCKS_GROUP, 'groups', true, $groups, 5, true)); |
|
| 672 | + |
|
| 673 | + if (isset($block['bid'])) { |
|
| 674 | + $form->addElement(new \XoopsFormHidden('bid', $block['bid'])); |
|
| 675 | + } |
|
| 676 | + $form->addElement(new \XoopsFormHidden('op', $block['op'])); |
|
| 677 | + $form->addElement(new \XoopsFormHidden('fct', 'blocksadmin')); |
|
| 678 | + $buttonTray = new \XoopsFormElementTray('', ' '); |
|
| 679 | + if ($block['is_custom']) { |
|
| 680 | + $buttonTray->addElement(new \XoopsFormButton('', 'previewblock', \_PREVIEW, 'submit')); |
|
| 681 | + } |
|
| 682 | + |
|
| 683 | + //Submit buttons |
|
| 684 | + $buttonTray = new \XoopsFormElementTray('', ''); |
|
| 685 | + $submitButton = new \XoopsFormButton('', 'submitblock', \_SUBMIT, 'submit'); |
|
| 686 | + $buttonTray->addElement($submitButton); |
|
| 687 | + |
|
| 688 | + $cancelButton = new \XoopsFormButton('', '', \_CANCEL, 'button'); |
|
| 689 | + $cancelButton->setExtra('onclick="history.go(-1)"'); |
|
| 690 | + $buttonTray->addElement($cancelButton); |
|
| 691 | + |
|
| 692 | + $form->addElement($buttonTray); |
|
| 693 | + $form->display(); |
|
| 694 | + } |
|
| 695 | 695 | } |
@@ -19,129 +19,129 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | trait VersionChecks |
| 21 | 21 | { |
| 22 | - /** |
|
| 23 | - * Verifies XOOPS version meets minimum requirements for this module |
|
| 24 | - * @static |
|
| 25 | - * @param \XoopsModule|null $module |
|
| 26 | - * |
|
| 27 | - * @param null|string $requiredVer |
|
| 28 | - * @return bool true if meets requirements, false if not |
|
| 29 | - */ |
|
| 30 | - public static function checkVerXoops(\XoopsModule $module = null, $requiredVer = null): bool |
|
| 31 | - { |
|
| 32 | - $moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 33 | - $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 34 | - if (null === $module) { |
|
| 35 | - $module = \XoopsModule::getByDirname($moduleDirName); |
|
| 36 | - } |
|
| 37 | - \xoops_loadLanguage('admin', $moduleDirName); |
|
| 38 | - \xoops_loadLanguage('common', $moduleDirName); |
|
| 22 | + /** |
|
| 23 | + * Verifies XOOPS version meets minimum requirements for this module |
|
| 24 | + * @static |
|
| 25 | + * @param \XoopsModule|null $module |
|
| 26 | + * |
|
| 27 | + * @param null|string $requiredVer |
|
| 28 | + * @return bool true if meets requirements, false if not |
|
| 29 | + */ |
|
| 30 | + public static function checkVerXoops(\XoopsModule $module = null, $requiredVer = null): bool |
|
| 31 | + { |
|
| 32 | + $moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 33 | + $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 34 | + if (null === $module) { |
|
| 35 | + $module = \XoopsModule::getByDirname($moduleDirName); |
|
| 36 | + } |
|
| 37 | + \xoops_loadLanguage('admin', $moduleDirName); |
|
| 38 | + \xoops_loadLanguage('common', $moduleDirName); |
|
| 39 | 39 | |
| 40 | - //check for minimum XOOPS version |
|
| 41 | - $currentVer = mb_substr(\XOOPS_VERSION, 6); // get the numeric part of string |
|
| 42 | - if (null === $requiredVer) { |
|
| 43 | - $requiredVer = '' . $module->getInfo('min_xoops'); //making sure it's a string |
|
| 44 | - } |
|
| 45 | - $success = true; |
|
| 40 | + //check for minimum XOOPS version |
|
| 41 | + $currentVer = mb_substr(\XOOPS_VERSION, 6); // get the numeric part of string |
|
| 42 | + if (null === $requiredVer) { |
|
| 43 | + $requiredVer = '' . $module->getInfo('min_xoops'); //making sure it's a string |
|
| 44 | + } |
|
| 45 | + $success = true; |
|
| 46 | 46 | |
| 47 | - if (\version_compare($currentVer, $requiredVer, '<')) { |
|
| 48 | - $success = false; |
|
| 49 | - $module->setErrors(\sprintf(\constant('CO_' . $moduleDirNameUpper . '_ERROR_BAD_XOOPS'), $requiredVer, $currentVer)); |
|
| 50 | - } |
|
| 47 | + if (\version_compare($currentVer, $requiredVer, '<')) { |
|
| 48 | + $success = false; |
|
| 49 | + $module->setErrors(\sprintf(\constant('CO_' . $moduleDirNameUpper . '_ERROR_BAD_XOOPS'), $requiredVer, $currentVer)); |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - return $success; |
|
| 53 | - } |
|
| 52 | + return $success; |
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - /** |
|
| 56 | - * Verifies PHP version meets minimum requirements for this module |
|
| 57 | - * @static |
|
| 58 | - * @param \XoopsModule|bool|null $module |
|
| 59 | - * |
|
| 60 | - * @return bool true if meets requirements, false if not |
|
| 61 | - */ |
|
| 62 | - public static function checkVerPhp(\XoopsModule $module = null): bool |
|
| 63 | - { |
|
| 64 | - $moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 65 | - $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 66 | - if (null === $module) { |
|
| 67 | - $module = \XoopsModule::getByDirname($moduleDirName); |
|
| 68 | - } |
|
| 69 | - \xoops_loadLanguage('admin', $moduleDirName); |
|
| 70 | - \xoops_loadLanguage('common', $moduleDirName); |
|
| 55 | + /** |
|
| 56 | + * Verifies PHP version meets minimum requirements for this module |
|
| 57 | + * @static |
|
| 58 | + * @param \XoopsModule|bool|null $module |
|
| 59 | + * |
|
| 60 | + * @return bool true if meets requirements, false if not |
|
| 61 | + */ |
|
| 62 | + public static function checkVerPhp(\XoopsModule $module = null): bool |
|
| 63 | + { |
|
| 64 | + $moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 65 | + $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 66 | + if (null === $module) { |
|
| 67 | + $module = \XoopsModule::getByDirname($moduleDirName); |
|
| 68 | + } |
|
| 69 | + \xoops_loadLanguage('admin', $moduleDirName); |
|
| 70 | + \xoops_loadLanguage('common', $moduleDirName); |
|
| 71 | 71 | |
| 72 | - // check for minimum PHP version |
|
| 73 | - $success = true; |
|
| 72 | + // check for minimum PHP version |
|
| 73 | + $success = true; |
|
| 74 | 74 | |
| 75 | - $verNum = \PHP_VERSION; |
|
| 76 | - $reqVer = &$module->getInfo('min_php'); |
|
| 75 | + $verNum = \PHP_VERSION; |
|
| 76 | + $reqVer = &$module->getInfo('min_php'); |
|
| 77 | 77 | |
| 78 | - if (false !== $reqVer && '' !== $reqVer) { |
|
| 79 | - if (\version_compare($verNum, $reqVer, '<')) { |
|
| 80 | - $module->setErrors(\sprintf(\constant('CO_' . $moduleDirNameUpper . '_ERROR_BAD_PHP'), $reqVer, $verNum)); |
|
| 81 | - $success = false; |
|
| 82 | - } |
|
| 83 | - } |
|
| 78 | + if (false !== $reqVer && '' !== $reqVer) { |
|
| 79 | + if (\version_compare($verNum, $reqVer, '<')) { |
|
| 80 | + $module->setErrors(\sprintf(\constant('CO_' . $moduleDirNameUpper . '_ERROR_BAD_PHP'), $reqVer, $verNum)); |
|
| 81 | + $success = false; |
|
| 82 | + } |
|
| 83 | + } |
|
| 84 | 84 | |
| 85 | - return $success; |
|
| 86 | - } |
|
| 85 | + return $success; |
|
| 86 | + } |
|
| 87 | 87 | |
| 88 | - /** |
|
| 89 | - * compares current module version with the latest GitHub release |
|
| 90 | - * @static |
|
| 91 | - * |
|
| 92 | - * @return string|array info about the latest module version, if newer |
|
| 93 | - */ |
|
| 94 | - public static function checkVerModule(\Xmf\Module\Helper $helper, ?string $source = 'github', ?string $default = 'master'): ?array |
|
| 95 | - { |
|
| 96 | - $moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 97 | - $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 98 | - $update = ''; |
|
| 99 | - $repository = 'XoopsModules25x/' . $moduleDirName; |
|
| 100 | - // $repository = 'XoopsModules25x/publisher'; //for testing only |
|
| 101 | - $ret = null; |
|
| 102 | - $infoReleasesUrl = "https://api.github.com/repos/$repository/releases"; |
|
| 103 | - if ('github' === $source) { |
|
| 104 | - if (\function_exists('curl_init') && false !== ($curlHandle = \curl_init())) { |
|
| 105 | - \curl_setopt($curlHandle, \CURLOPT_URL, $infoReleasesUrl); |
|
| 106 | - \curl_setopt($curlHandle, \CURLOPT_RETURNTRANSFER, true); |
|
| 107 | - \curl_setopt($curlHandle, \CURLOPT_SSL_VERIFYPEER, true); //TODO: how to avoid an error when 'Peer's Certificate issuer is not recognized' |
|
| 108 | - \curl_setopt($curlHandle, \CURLOPT_HTTPHEADER, ["User-Agent:Publisher\r\n"]); |
|
| 109 | - $curlReturn = \curl_exec($curlHandle); |
|
| 110 | - if (false === $curlReturn) { |
|
| 111 | - \trigger_error(\curl_error($curlHandle)); |
|
| 112 | - } elseif (false !== \mb_strpos($curlReturn, 'Not Found')) { |
|
| 113 | - \trigger_error('Repository Not Found: ' . $infoReleasesUrl); |
|
| 114 | - } else { |
|
| 115 | - $file = json_decode($curlReturn, false); |
|
| 116 | - $latestVersionLink = \sprintf("https://github.com/$repository/archive/%s.zip", $file ? \reset($file)->tag_name : $default); |
|
| 117 | - $latestVersion = $file[0]->tag_name; |
|
| 118 | - $prerelease = $file[0]->prerelease; |
|
| 119 | - if ('master' !== $latestVersionLink) { |
|
| 120 | - $update = \constant('CO_' . $moduleDirNameUpper . '_' . 'NEW_VERSION') . $latestVersion; |
|
| 121 | - } |
|
| 122 | - //"PHP-standardized" version |
|
| 123 | - $latestVersion = \mb_strtolower($latestVersion); |
|
| 124 | - if (false !== mb_strpos($latestVersion, 'final')) { |
|
| 125 | - $latestVersion = \str_replace('_', '', \mb_strtolower($latestVersion)); |
|
| 126 | - $latestVersion = \str_replace('final', '', \mb_strtolower($latestVersion)); |
|
| 127 | - } |
|
| 128 | - $moduleVersion = ($helper->getModule() |
|
| 129 | - ->getInfo('version') . '_' . $helper->getModule() |
|
| 130 | - ->getInfo('module_status')); |
|
| 131 | - //"PHP-standardized" version |
|
| 132 | - $moduleVersion = \str_replace(' ', '', \mb_strtolower($moduleVersion)); |
|
| 133 | - // $moduleVersion = '1.0'; //for testing only |
|
| 134 | - // $moduleDirName = 'publisher'; //for testing only |
|
| 135 | - if (!$prerelease && \version_compare($moduleVersion, $latestVersion, '<')) { |
|
| 136 | - $ret = []; |
|
| 137 | - $ret[] = $update; |
|
| 138 | - $ret[] = $latestVersionLink; |
|
| 139 | - } |
|
| 140 | - } |
|
| 141 | - \curl_close($curlHandle); |
|
| 142 | - } |
|
| 143 | - } |
|
| 88 | + /** |
|
| 89 | + * compares current module version with the latest GitHub release |
|
| 90 | + * @static |
|
| 91 | + * |
|
| 92 | + * @return string|array info about the latest module version, if newer |
|
| 93 | + */ |
|
| 94 | + public static function checkVerModule(\Xmf\Module\Helper $helper, ?string $source = 'github', ?string $default = 'master'): ?array |
|
| 95 | + { |
|
| 96 | + $moduleDirName = \basename(\dirname(__DIR__, 2)); |
|
| 97 | + $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 98 | + $update = ''; |
|
| 99 | + $repository = 'XoopsModules25x/' . $moduleDirName; |
|
| 100 | + // $repository = 'XoopsModules25x/publisher'; //for testing only |
|
| 101 | + $ret = null; |
|
| 102 | + $infoReleasesUrl = "https://api.github.com/repos/$repository/releases"; |
|
| 103 | + if ('github' === $source) { |
|
| 104 | + if (\function_exists('curl_init') && false !== ($curlHandle = \curl_init())) { |
|
| 105 | + \curl_setopt($curlHandle, \CURLOPT_URL, $infoReleasesUrl); |
|
| 106 | + \curl_setopt($curlHandle, \CURLOPT_RETURNTRANSFER, true); |
|
| 107 | + \curl_setopt($curlHandle, \CURLOPT_SSL_VERIFYPEER, true); //TODO: how to avoid an error when 'Peer's Certificate issuer is not recognized' |
|
| 108 | + \curl_setopt($curlHandle, \CURLOPT_HTTPHEADER, ["User-Agent:Publisher\r\n"]); |
|
| 109 | + $curlReturn = \curl_exec($curlHandle); |
|
| 110 | + if (false === $curlReturn) { |
|
| 111 | + \trigger_error(\curl_error($curlHandle)); |
|
| 112 | + } elseif (false !== \mb_strpos($curlReturn, 'Not Found')) { |
|
| 113 | + \trigger_error('Repository Not Found: ' . $infoReleasesUrl); |
|
| 114 | + } else { |
|
| 115 | + $file = json_decode($curlReturn, false); |
|
| 116 | + $latestVersionLink = \sprintf("https://github.com/$repository/archive/%s.zip", $file ? \reset($file)->tag_name : $default); |
|
| 117 | + $latestVersion = $file[0]->tag_name; |
|
| 118 | + $prerelease = $file[0]->prerelease; |
|
| 119 | + if ('master' !== $latestVersionLink) { |
|
| 120 | + $update = \constant('CO_' . $moduleDirNameUpper . '_' . 'NEW_VERSION') . $latestVersion; |
|
| 121 | + } |
|
| 122 | + //"PHP-standardized" version |
|
| 123 | + $latestVersion = \mb_strtolower($latestVersion); |
|
| 124 | + if (false !== mb_strpos($latestVersion, 'final')) { |
|
| 125 | + $latestVersion = \str_replace('_', '', \mb_strtolower($latestVersion)); |
|
| 126 | + $latestVersion = \str_replace('final', '', \mb_strtolower($latestVersion)); |
|
| 127 | + } |
|
| 128 | + $moduleVersion = ($helper->getModule() |
|
| 129 | + ->getInfo('version') . '_' . $helper->getModule() |
|
| 130 | + ->getInfo('module_status')); |
|
| 131 | + //"PHP-standardized" version |
|
| 132 | + $moduleVersion = \str_replace(' ', '', \mb_strtolower($moduleVersion)); |
|
| 133 | + // $moduleVersion = '1.0'; //for testing only |
|
| 134 | + // $moduleDirName = 'publisher'; //for testing only |
|
| 135 | + if (!$prerelease && \version_compare($moduleVersion, $latestVersion, '<')) { |
|
| 136 | + $ret = []; |
|
| 137 | + $ret[] = $update; |
|
| 138 | + $ret[] = $latestVersionLink; |
|
| 139 | + } |
|
| 140 | + } |
|
| 141 | + \curl_close($curlHandle); |
|
| 142 | + } |
|
| 143 | + } |
|
| 144 | 144 | |
| 145 | - return $ret; |
|
| 146 | - } |
|
| 145 | + return $ret; |
|
| 146 | + } |
|
| 147 | 147 | } |
@@ -30,217 +30,217 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | class SysUtility |
| 32 | 32 | { |
| 33 | - use VersionChecks; |
|
| 34 | - |
|
| 35 | - //checkVerXoops, checkVerPhp Traits |
|
| 36 | - |
|
| 37 | - use ServerStats; |
|
| 38 | - |
|
| 39 | - // getServerStats Trait |
|
| 40 | - |
|
| 41 | - use FilesManagement; |
|
| 42 | - |
|
| 43 | - // Files Management Trait |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * truncateHtml can truncate a string up to a number of characters while preserving whole words and HTML tags |
|
| 47 | - * www.gsdesign.ro/blog/cut-html-string-without-breaking-the-tags |
|
| 48 | - * www.cakephp.org |
|
| 49 | - * |
|
| 50 | - * @param string $text String to truncate. |
|
| 51 | - * @param int $length Length of returned string, including ellipsis. |
|
| 52 | - * @param string $ending Ending to be appended to the trimmed string. |
|
| 53 | - * @param bool $exact If false, $text will not be cut mid-word |
|
| 54 | - * @param bool $considerHtml If true, HTML tags would be handled correctly |
|
| 55 | - * |
|
| 56 | - * @return string Trimmed string. |
|
| 57 | - */ |
|
| 58 | - public static function truncateHtml($text, $length = 100, $ending = '...', $exact = false, $considerHtml = true): string |
|
| 59 | - { |
|
| 60 | - if ($considerHtml) { |
|
| 61 | - // if the plain text is shorter than the maximum length, return the whole text |
|
| 62 | - if (mb_strlen(\preg_replace('/<.*?' . '>/', '', $text)) <= $length) { |
|
| 63 | - return $text; |
|
| 64 | - } |
|
| 65 | - // splits all html-tags to scanable lines |
|
| 66 | - \preg_match_all('/(<.+?' . '>)?([^<>]*)/s', $text, $lines, \PREG_SET_ORDER); |
|
| 67 | - $total_length = mb_strlen($ending); |
|
| 68 | - $open_tags = []; |
|
| 69 | - $truncate = ''; |
|
| 70 | - foreach ($lines as $line_matchings) { |
|
| 71 | - // if there is any html-tag in this line, handle it and add it (uncounted) to the output |
|
| 72 | - if (!empty($line_matchings[1])) { |
|
| 73 | - // if it's an "empty element" with or without xhtml-conform closing slash |
|
| 74 | - if (\preg_match('/^<(\s*.+?\/\s*|\s*(img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param)(\s.+?)?)>$/is', $line_matchings[1])) { |
|
| 75 | - // do nothing |
|
| 76 | - // if tag is a closing tag |
|
| 77 | - } elseif (\preg_match('/^<\s*\/(\S+?)\s*>$/s', $line_matchings[1], $tag_matchings)) { |
|
| 78 | - // delete tag from $open_tags list |
|
| 79 | - $pos = \array_search($tag_matchings[1], $open_tags, true); |
|
| 80 | - if (false !== $pos) { |
|
| 81 | - unset($open_tags[$pos]); |
|
| 82 | - } |
|
| 83 | - // if tag is an opening tag |
|
| 84 | - } elseif (\preg_match('/^<\s*([^\s>!]+).*?' . '>$/s', $line_matchings[1], $tag_matchings)) { |
|
| 85 | - // add tag to the beginning of $open_tags list |
|
| 86 | - \array_unshift($open_tags, \mb_strtolower($tag_matchings[1])); |
|
| 87 | - } |
|
| 88 | - // add html-tag to $truncate'd text |
|
| 89 | - $truncate .= $line_matchings[1]; |
|
| 90 | - } |
|
| 91 | - // calculate the length of the plain text part of the line; handle entities as one character |
|
| 92 | - $content_length = mb_strlen(\preg_replace('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i', ' ', $line_matchings[2])); |
|
| 93 | - if ($total_length + $content_length > $length) { |
|
| 94 | - // the number of characters which are left |
|
| 95 | - $left = $length - $total_length; |
|
| 96 | - $entities_length = 0; |
|
| 97 | - // search for html entities |
|
| 98 | - if (\preg_match_all('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i', $line_matchings[2], $entities, \PREG_OFFSET_CAPTURE)) { |
|
| 99 | - // calculate the real length of all entities in the legal range |
|
| 100 | - foreach ($entities[0] as $entity) { |
|
| 101 | - if ($left >= $entity[1] + 1 - $entities_length) { |
|
| 102 | - $left--; |
|
| 103 | - $entities_length += mb_strlen($entity[0]); |
|
| 104 | - } else { |
|
| 105 | - // no more characters left |
|
| 106 | - break; |
|
| 107 | - } |
|
| 108 | - } |
|
| 109 | - } |
|
| 110 | - $truncate .= mb_substr($line_matchings[2], 0, $left + $entities_length); |
|
| 111 | - // maximum lenght is reached, so get off the loop |
|
| 112 | - break; |
|
| 113 | - } |
|
| 114 | - $truncate .= $line_matchings[2]; |
|
| 115 | - $total_length += $content_length; |
|
| 116 | - |
|
| 117 | - // if the maximum length is reached, get off the loop |
|
| 118 | - if ($total_length >= $length) { |
|
| 119 | - break; |
|
| 120 | - } |
|
| 121 | - } |
|
| 122 | - } else { |
|
| 123 | - if (mb_strlen($text) <= $length) { |
|
| 124 | - return $text; |
|
| 125 | - } |
|
| 126 | - $truncate = mb_substr($text, 0, $length - mb_strlen($ending)); |
|
| 127 | - } |
|
| 128 | - // if the words shouldn't be cut in the middle... |
|
| 129 | - if (!$exact) { |
|
| 130 | - // ...search the last occurance of a space... |
|
| 131 | - $spacepos = mb_strrpos($truncate, ' '); |
|
| 132 | - if (isset($spacepos)) { |
|
| 133 | - // ...and cut the text in this position |
|
| 134 | - $truncate = mb_substr($truncate, 0, $spacepos); |
|
| 135 | - } |
|
| 136 | - } |
|
| 137 | - // add the defined ending to the text |
|
| 138 | - $truncate .= $ending; |
|
| 139 | - if ($considerHtml) { |
|
| 140 | - // close all unclosed html-tags |
|
| 141 | - foreach ($open_tags as $tag) { |
|
| 142 | - $truncate .= '</' . $tag . '>'; |
|
| 143 | - } |
|
| 144 | - } |
|
| 145 | - |
|
| 146 | - return $truncate; |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - /** |
|
| 150 | - * @param \Xmf\Module\Helper $helper |
|
| 151 | - * @param array|null $options |
|
| 152 | - * @return \XoopsFormDhtmlTextArea|\XoopsFormEditor |
|
| 153 | - */ |
|
| 154 | - public static function getEditor($helper = null, $options = null) |
|
| 155 | - { |
|
| 156 | - /** @var Helper $helper */ |
|
| 157 | - if (null === $options) { |
|
| 158 | - $options = []; |
|
| 159 | - $options['name'] = 'Editor'; |
|
| 160 | - $options['value'] = 'Editor'; |
|
| 161 | - $options['rows'] = 10; |
|
| 162 | - $options['cols'] = '100%'; |
|
| 163 | - $options['width'] = '100%'; |
|
| 164 | - $options['height'] = '400px'; |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - if (null === $helper) { |
|
| 168 | - $helper = Helper::getInstance(); |
|
| 169 | - } |
|
| 170 | - |
|
| 171 | - $isAdmin = $helper->isUserAdmin(); |
|
| 172 | - |
|
| 173 | - if (\class_exists('XoopsFormEditor')) { |
|
| 174 | - if ($isAdmin) { |
|
| 175 | - $descEditor = new \XoopsFormEditor(\ucfirst($options['name']), $helper->getConfig('editorAdmin'), $options, $nohtml = false, $onfailure = 'textarea'); |
|
| 176 | - } else { |
|
| 177 | - $descEditor = new \XoopsFormEditor(\ucfirst($options['name']), $helper->getConfig('editorUser'), $options, $nohtml = false, $onfailure = 'textarea'); |
|
| 178 | - } |
|
| 179 | - } else { |
|
| 180 | - $descEditor = new \XoopsFormDhtmlTextArea(\ucfirst($options['name']), $options['name'], $options['value'], '100%', '100%'); |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - // $form->addElement($descEditor); |
|
| 184 | - |
|
| 185 | - return $descEditor; |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - /** |
|
| 189 | - * @param string $fieldname |
|
| 190 | - * @param string $table |
|
| 191 | - * @return bool |
|
| 192 | - */ |
|
| 193 | - public static function fieldExists(string $fieldname, string $table): bool |
|
| 194 | - { |
|
| 195 | - global $xoopsDB; |
|
| 196 | - $result = $xoopsDB->queryF("SHOW COLUMNS FROM $table LIKE '$fieldname'"); |
|
| 197 | - |
|
| 198 | - return ($xoopsDB->getRowsNum($result) > 0); |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - /** |
|
| 202 | - * @param array|string $tableName |
|
| 203 | - * @param int $id_field |
|
| 204 | - * @param int $id |
|
| 205 | - * |
|
| 206 | - * @return mixed |
|
| 207 | - */ |
|
| 208 | - public static function cloneRecord($tableName, $id_field, $id) |
|
| 209 | - { |
|
| 210 | - $new_id = false; |
|
| 211 | - $table = $GLOBALS['xoopsDB']->prefix($tableName); |
|
| 212 | - // copy content of the record you wish to clone |
|
| 213 | - $sql = "SELECT * FROM $table WHERE $idField='" . $id . "' "; |
|
| 214 | - $result = $GLOBALS['xoopsDB']->query($sql); |
|
| 215 | - if ($result instanceof \mysqli_result) { |
|
| 216 | - $tempTable = $GLOBALS['xoopsDB']->fetchArray($result, \MYSQLI_ASSOC); |
|
| 217 | - } |
|
| 218 | - if (!$tempTable) { |
|
| 219 | - \trigger_error($GLOBALS['xoopsDB']->error()); |
|
| 220 | - } |
|
| 221 | - // set the auto-incremented id's value to blank. |
|
| 222 | - unset($tempTable[$id_field]); |
|
| 223 | - // insert cloned copy of the original record |
|
| 224 | - $sql = "INSERT INTO $table (" . \implode(', ', \array_keys($tempTable)) . ") VALUES ('" . \implode("', '", $tempTable) . "')"; |
|
| 225 | - $result = $GLOBALS['xoopsDB']->queryF($sql); |
|
| 226 | - if (!$result) { |
|
| 227 | - \trigger_error($GLOBALS['xoopsDB']->error()); |
|
| 228 | - } |
|
| 229 | - // Return the new id |
|
| 230 | - $new_id = $GLOBALS['xoopsDB']->getInsertId(); |
|
| 231 | - |
|
| 232 | - return $new_id; |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * @param string $tablename |
|
| 237 | - * |
|
| 238 | - * @return bool |
|
| 239 | - */ |
|
| 240 | - public static function tableExists($tablename): bool |
|
| 241 | - { |
|
| 242 | - $result = $GLOBALS['xoopsDB']->queryF("SHOW TABLES LIKE '$tablename'"); |
|
| 243 | - |
|
| 244 | - return $GLOBALS['xoopsDB']->getRowsNum($result) > 0; |
|
| 245 | - } |
|
| 33 | + use VersionChecks; |
|
| 34 | + |
|
| 35 | + //checkVerXoops, checkVerPhp Traits |
|
| 36 | + |
|
| 37 | + use ServerStats; |
|
| 38 | + |
|
| 39 | + // getServerStats Trait |
|
| 40 | + |
|
| 41 | + use FilesManagement; |
|
| 42 | + |
|
| 43 | + // Files Management Trait |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * truncateHtml can truncate a string up to a number of characters while preserving whole words and HTML tags |
|
| 47 | + * www.gsdesign.ro/blog/cut-html-string-without-breaking-the-tags |
|
| 48 | + * www.cakephp.org |
|
| 49 | + * |
|
| 50 | + * @param string $text String to truncate. |
|
| 51 | + * @param int $length Length of returned string, including ellipsis. |
|
| 52 | + * @param string $ending Ending to be appended to the trimmed string. |
|
| 53 | + * @param bool $exact If false, $text will not be cut mid-word |
|
| 54 | + * @param bool $considerHtml If true, HTML tags would be handled correctly |
|
| 55 | + * |
|
| 56 | + * @return string Trimmed string. |
|
| 57 | + */ |
|
| 58 | + public static function truncateHtml($text, $length = 100, $ending = '...', $exact = false, $considerHtml = true): string |
|
| 59 | + { |
|
| 60 | + if ($considerHtml) { |
|
| 61 | + // if the plain text is shorter than the maximum length, return the whole text |
|
| 62 | + if (mb_strlen(\preg_replace('/<.*?' . '>/', '', $text)) <= $length) { |
|
| 63 | + return $text; |
|
| 64 | + } |
|
| 65 | + // splits all html-tags to scanable lines |
|
| 66 | + \preg_match_all('/(<.+?' . '>)?([^<>]*)/s', $text, $lines, \PREG_SET_ORDER); |
|
| 67 | + $total_length = mb_strlen($ending); |
|
| 68 | + $open_tags = []; |
|
| 69 | + $truncate = ''; |
|
| 70 | + foreach ($lines as $line_matchings) { |
|
| 71 | + // if there is any html-tag in this line, handle it and add it (uncounted) to the output |
|
| 72 | + if (!empty($line_matchings[1])) { |
|
| 73 | + // if it's an "empty element" with or without xhtml-conform closing slash |
|
| 74 | + if (\preg_match('/^<(\s*.+?\/\s*|\s*(img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param)(\s.+?)?)>$/is', $line_matchings[1])) { |
|
| 75 | + // do nothing |
|
| 76 | + // if tag is a closing tag |
|
| 77 | + } elseif (\preg_match('/^<\s*\/(\S+?)\s*>$/s', $line_matchings[1], $tag_matchings)) { |
|
| 78 | + // delete tag from $open_tags list |
|
| 79 | + $pos = \array_search($tag_matchings[1], $open_tags, true); |
|
| 80 | + if (false !== $pos) { |
|
| 81 | + unset($open_tags[$pos]); |
|
| 82 | + } |
|
| 83 | + // if tag is an opening tag |
|
| 84 | + } elseif (\preg_match('/^<\s*([^\s>!]+).*?' . '>$/s', $line_matchings[1], $tag_matchings)) { |
|
| 85 | + // add tag to the beginning of $open_tags list |
|
| 86 | + \array_unshift($open_tags, \mb_strtolower($tag_matchings[1])); |
|
| 87 | + } |
|
| 88 | + // add html-tag to $truncate'd text |
|
| 89 | + $truncate .= $line_matchings[1]; |
|
| 90 | + } |
|
| 91 | + // calculate the length of the plain text part of the line; handle entities as one character |
|
| 92 | + $content_length = mb_strlen(\preg_replace('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i', ' ', $line_matchings[2])); |
|
| 93 | + if ($total_length + $content_length > $length) { |
|
| 94 | + // the number of characters which are left |
|
| 95 | + $left = $length - $total_length; |
|
| 96 | + $entities_length = 0; |
|
| 97 | + // search for html entities |
|
| 98 | + if (\preg_match_all('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i', $line_matchings[2], $entities, \PREG_OFFSET_CAPTURE)) { |
|
| 99 | + // calculate the real length of all entities in the legal range |
|
| 100 | + foreach ($entities[0] as $entity) { |
|
| 101 | + if ($left >= $entity[1] + 1 - $entities_length) { |
|
| 102 | + $left--; |
|
| 103 | + $entities_length += mb_strlen($entity[0]); |
|
| 104 | + } else { |
|
| 105 | + // no more characters left |
|
| 106 | + break; |
|
| 107 | + } |
|
| 108 | + } |
|
| 109 | + } |
|
| 110 | + $truncate .= mb_substr($line_matchings[2], 0, $left + $entities_length); |
|
| 111 | + // maximum lenght is reached, so get off the loop |
|
| 112 | + break; |
|
| 113 | + } |
|
| 114 | + $truncate .= $line_matchings[2]; |
|
| 115 | + $total_length += $content_length; |
|
| 116 | + |
|
| 117 | + // if the maximum length is reached, get off the loop |
|
| 118 | + if ($total_length >= $length) { |
|
| 119 | + break; |
|
| 120 | + } |
|
| 121 | + } |
|
| 122 | + } else { |
|
| 123 | + if (mb_strlen($text) <= $length) { |
|
| 124 | + return $text; |
|
| 125 | + } |
|
| 126 | + $truncate = mb_substr($text, 0, $length - mb_strlen($ending)); |
|
| 127 | + } |
|
| 128 | + // if the words shouldn't be cut in the middle... |
|
| 129 | + if (!$exact) { |
|
| 130 | + // ...search the last occurance of a space... |
|
| 131 | + $spacepos = mb_strrpos($truncate, ' '); |
|
| 132 | + if (isset($spacepos)) { |
|
| 133 | + // ...and cut the text in this position |
|
| 134 | + $truncate = mb_substr($truncate, 0, $spacepos); |
|
| 135 | + } |
|
| 136 | + } |
|
| 137 | + // add the defined ending to the text |
|
| 138 | + $truncate .= $ending; |
|
| 139 | + if ($considerHtml) { |
|
| 140 | + // close all unclosed html-tags |
|
| 141 | + foreach ($open_tags as $tag) { |
|
| 142 | + $truncate .= '</' . $tag . '>'; |
|
| 143 | + } |
|
| 144 | + } |
|
| 145 | + |
|
| 146 | + return $truncate; |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + /** |
|
| 150 | + * @param \Xmf\Module\Helper $helper |
|
| 151 | + * @param array|null $options |
|
| 152 | + * @return \XoopsFormDhtmlTextArea|\XoopsFormEditor |
|
| 153 | + */ |
|
| 154 | + public static function getEditor($helper = null, $options = null) |
|
| 155 | + { |
|
| 156 | + /** @var Helper $helper */ |
|
| 157 | + if (null === $options) { |
|
| 158 | + $options = []; |
|
| 159 | + $options['name'] = 'Editor'; |
|
| 160 | + $options['value'] = 'Editor'; |
|
| 161 | + $options['rows'] = 10; |
|
| 162 | + $options['cols'] = '100%'; |
|
| 163 | + $options['width'] = '100%'; |
|
| 164 | + $options['height'] = '400px'; |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + if (null === $helper) { |
|
| 168 | + $helper = Helper::getInstance(); |
|
| 169 | + } |
|
| 170 | + |
|
| 171 | + $isAdmin = $helper->isUserAdmin(); |
|
| 172 | + |
|
| 173 | + if (\class_exists('XoopsFormEditor')) { |
|
| 174 | + if ($isAdmin) { |
|
| 175 | + $descEditor = new \XoopsFormEditor(\ucfirst($options['name']), $helper->getConfig('editorAdmin'), $options, $nohtml = false, $onfailure = 'textarea'); |
|
| 176 | + } else { |
|
| 177 | + $descEditor = new \XoopsFormEditor(\ucfirst($options['name']), $helper->getConfig('editorUser'), $options, $nohtml = false, $onfailure = 'textarea'); |
|
| 178 | + } |
|
| 179 | + } else { |
|
| 180 | + $descEditor = new \XoopsFormDhtmlTextArea(\ucfirst($options['name']), $options['name'], $options['value'], '100%', '100%'); |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + // $form->addElement($descEditor); |
|
| 184 | + |
|
| 185 | + return $descEditor; |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + /** |
|
| 189 | + * @param string $fieldname |
|
| 190 | + * @param string $table |
|
| 191 | + * @return bool |
|
| 192 | + */ |
|
| 193 | + public static function fieldExists(string $fieldname, string $table): bool |
|
| 194 | + { |
|
| 195 | + global $xoopsDB; |
|
| 196 | + $result = $xoopsDB->queryF("SHOW COLUMNS FROM $table LIKE '$fieldname'"); |
|
| 197 | + |
|
| 198 | + return ($xoopsDB->getRowsNum($result) > 0); |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + /** |
|
| 202 | + * @param array|string $tableName |
|
| 203 | + * @param int $id_field |
|
| 204 | + * @param int $id |
|
| 205 | + * |
|
| 206 | + * @return mixed |
|
| 207 | + */ |
|
| 208 | + public static function cloneRecord($tableName, $id_field, $id) |
|
| 209 | + { |
|
| 210 | + $new_id = false; |
|
| 211 | + $table = $GLOBALS['xoopsDB']->prefix($tableName); |
|
| 212 | + // copy content of the record you wish to clone |
|
| 213 | + $sql = "SELECT * FROM $table WHERE $idField='" . $id . "' "; |
|
| 214 | + $result = $GLOBALS['xoopsDB']->query($sql); |
|
| 215 | + if ($result instanceof \mysqli_result) { |
|
| 216 | + $tempTable = $GLOBALS['xoopsDB']->fetchArray($result, \MYSQLI_ASSOC); |
|
| 217 | + } |
|
| 218 | + if (!$tempTable) { |
|
| 219 | + \trigger_error($GLOBALS['xoopsDB']->error()); |
|
| 220 | + } |
|
| 221 | + // set the auto-incremented id's value to blank. |
|
| 222 | + unset($tempTable[$id_field]); |
|
| 223 | + // insert cloned copy of the original record |
|
| 224 | + $sql = "INSERT INTO $table (" . \implode(', ', \array_keys($tempTable)) . ") VALUES ('" . \implode("', '", $tempTable) . "')"; |
|
| 225 | + $result = $GLOBALS['xoopsDB']->queryF($sql); |
|
| 226 | + if (!$result) { |
|
| 227 | + \trigger_error($GLOBALS['xoopsDB']->error()); |
|
| 228 | + } |
|
| 229 | + // Return the new id |
|
| 230 | + $new_id = $GLOBALS['xoopsDB']->getInsertId(); |
|
| 231 | + |
|
| 232 | + return $new_id; |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * @param string $tablename |
|
| 237 | + * |
|
| 238 | + * @return bool |
|
| 239 | + */ |
|
| 240 | + public static function tableExists($tablename): bool |
|
| 241 | + { |
|
| 242 | + $result = $GLOBALS['xoopsDB']->queryF("SHOW TABLES LIKE '$tablename'"); |
|
| 243 | + |
|
| 244 | + return $GLOBALS['xoopsDB']->getRowsNum($result) > 0; |
|
| 245 | + } |
|
| 246 | 246 | } |
@@ -23,62 +23,62 @@ |
||
| 23 | 23 | */ |
| 24 | 24 | class Helper extends \Xmf\Module\Helper |
| 25 | 25 | { |
| 26 | - public $debug; |
|
| 26 | + public $debug; |
|
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * @param bool $debug |
|
| 30 | - */ |
|
| 31 | - public function __construct($debug = false) |
|
| 32 | - { |
|
| 33 | - $this->debug = $debug; |
|
| 34 | - $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 35 | - parent::__construct($moduleDirName); |
|
| 36 | - } |
|
| 28 | + /** |
|
| 29 | + * @param bool $debug |
|
| 30 | + */ |
|
| 31 | + public function __construct($debug = false) |
|
| 32 | + { |
|
| 33 | + $this->debug = $debug; |
|
| 34 | + $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 35 | + parent::__construct($moduleDirName); |
|
| 36 | + } |
|
| 37 | 37 | |
| 38 | - /** |
|
| 39 | - * @param bool $debug |
|
| 40 | - * |
|
| 41 | - * @return \XoopsModules\Myiframe\Helper |
|
| 42 | - */ |
|
| 43 | - public static function getInstance(bool $debug = false): self |
|
| 44 | - { |
|
| 45 | - static $instance; |
|
| 46 | - if (null === $instance) { |
|
| 47 | - $instance = new static($debug); |
|
| 48 | - } |
|
| 38 | + /** |
|
| 39 | + * @param bool $debug |
|
| 40 | + * |
|
| 41 | + * @return \XoopsModules\Myiframe\Helper |
|
| 42 | + */ |
|
| 43 | + public static function getInstance(bool $debug = false): self |
|
| 44 | + { |
|
| 45 | + static $instance; |
|
| 46 | + if (null === $instance) { |
|
| 47 | + $instance = new static($debug); |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - return $instance; |
|
| 51 | - } |
|
| 50 | + return $instance; |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * @return string |
|
| 55 | - */ |
|
| 56 | - public function getDirname(): string |
|
| 57 | - { |
|
| 58 | - return $this->dirname; |
|
| 59 | - } |
|
| 53 | + /** |
|
| 54 | + * @return string |
|
| 55 | + */ |
|
| 56 | + public function getDirname(): string |
|
| 57 | + { |
|
| 58 | + return $this->dirname; |
|
| 59 | + } |
|
| 60 | 60 | |
| 61 | - /** |
|
| 62 | - * Get an Object Handler |
|
| 63 | - * |
|
| 64 | - * @param string $name name of handler to load |
|
| 65 | - * |
|
| 66 | - * @return bool|\XoopsObjectHandler|\XoopsPersistableObjectHandler |
|
| 67 | - */ |
|
| 68 | - public function getHandler($name) |
|
| 69 | - { |
|
| 70 | - $ret = false; |
|
| 61 | + /** |
|
| 62 | + * Get an Object Handler |
|
| 63 | + * |
|
| 64 | + * @param string $name name of handler to load |
|
| 65 | + * |
|
| 66 | + * @return bool|\XoopsObjectHandler|\XoopsPersistableObjectHandler |
|
| 67 | + */ |
|
| 68 | + public function getHandler($name) |
|
| 69 | + { |
|
| 70 | + $ret = false; |
|
| 71 | 71 | |
| 72 | - $class = __NAMESPACE__ . '\\' . \ucfirst($name) . 'Handler'; |
|
| 73 | - if (!\class_exists($class)) { |
|
| 74 | - throw new \RuntimeException("Class '$class' not found"); |
|
| 75 | - } |
|
| 76 | - /** @var \XoopsMySQLDatabase $db */ |
|
| 77 | - $db = \XoopsDatabaseFactory::getDatabaseConnection(); |
|
| 78 | - $helper = self::getInstance(); |
|
| 79 | - $ret = new $class($db, $helper); |
|
| 80 | - $this->addLog("Getting handler '{$name}'"); |
|
| 72 | + $class = __NAMESPACE__ . '\\' . \ucfirst($name) . 'Handler'; |
|
| 73 | + if (!\class_exists($class)) { |
|
| 74 | + throw new \RuntimeException("Class '$class' not found"); |
|
| 75 | + } |
|
| 76 | + /** @var \XoopsMySQLDatabase $db */ |
|
| 77 | + $db = \XoopsDatabaseFactory::getDatabaseConnection(); |
|
| 78 | + $helper = self::getInstance(); |
|
| 79 | + $ret = new $class($db, $helper); |
|
| 80 | + $this->addLog("Getting handler '{$name}'"); |
|
| 81 | 81 | |
| 82 | - return $ret; |
|
| 83 | - } |
|
| 82 | + return $ret; |
|
| 83 | + } |
|
| 84 | 84 | } |
@@ -21,9 +21,9 @@ discard block |
||
| 21 | 21 | use Xmf\Request; |
| 22 | 22 | use Xmf\Yaml; |
| 23 | 23 | use XoopsModules\Myiframe\{ |
| 24 | - Helper, |
|
| 25 | - Common\Configurator, |
|
| 26 | - Utility |
|
| 24 | + Helper, |
|
| 25 | + Common\Configurator, |
|
| 26 | + Utility |
|
| 27 | 27 | }; |
| 28 | 28 | |
| 29 | 29 | /** @var Helper $helper */ |
@@ -43,33 +43,33 @@ discard block |
||
| 43 | 43 | $helper->loadLanguage('common'); |
| 44 | 44 | |
| 45 | 45 | switch ($op) { |
| 46 | - case 'load': |
|
| 47 | - if (Request::hasVar('ok', 'REQUEST') && 1 === Request::getInt('ok', 0)) { |
|
| 48 | - if (!$GLOBALS['xoopsSecurity']->check()) { |
|
| 49 | - \redirect_header($helper->url('admin/index.php'), 3, implode(',', $GLOBALS['xoopsSecurity']->getErrors())); |
|
| 50 | - } |
|
| 51 | - loadSampleData(); |
|
| 52 | - } else { |
|
| 53 | - xoops_cp_header(); |
|
| 54 | - xoops_confirm(['ok' => 1, 'op' => 'load'], 'index.php', \sprintf(\constant('CO_' . $moduleDirNameUpper . '_' . 'LOAD_SAMPLEDATA_CONFIRM')), \constant('CO_' . $moduleDirNameUpper . '_' . 'CONFIRM'), true); |
|
| 55 | - xoops_cp_footer(); |
|
| 56 | - } |
|
| 57 | - break; |
|
| 58 | - case 'save': |
|
| 59 | - saveSampleData(); |
|
| 60 | - break; |
|
| 61 | - case 'clear': |
|
| 62 | - if (Request::hasVar('ok', 'REQUEST') && 1 === Request::getInt('ok', 0)) { |
|
| 63 | - if (!$GLOBALS['xoopsSecurity']->check()) { |
|
| 64 | - redirect_header($helper->url('admin/index.php'), 3, implode(',', $GLOBALS['xoopsSecurity']->getErrors())); |
|
| 65 | - } |
|
| 66 | - clearSampleData(); |
|
| 67 | - } else { |
|
| 68 | - xoops_cp_header(); |
|
| 69 | - xoops_confirm(['ok' => 1, 'op' => 'clear'], 'index.php', sprintf(constant('CO_' . $moduleDirNameUpper . '_' . 'CLEAR_SAMPLEDATA')), constant('CO_' . $moduleDirNameUpper . '_' . 'CONFIRM'), true); |
|
| 70 | - xoops_cp_footer(); |
|
| 71 | - } |
|
| 72 | - break; |
|
| 46 | + case 'load': |
|
| 47 | + if (Request::hasVar('ok', 'REQUEST') && 1 === Request::getInt('ok', 0)) { |
|
| 48 | + if (!$GLOBALS['xoopsSecurity']->check()) { |
|
| 49 | + \redirect_header($helper->url('admin/index.php'), 3, implode(',', $GLOBALS['xoopsSecurity']->getErrors())); |
|
| 50 | + } |
|
| 51 | + loadSampleData(); |
|
| 52 | + } else { |
|
| 53 | + xoops_cp_header(); |
|
| 54 | + xoops_confirm(['ok' => 1, 'op' => 'load'], 'index.php', \sprintf(\constant('CO_' . $moduleDirNameUpper . '_' . 'LOAD_SAMPLEDATA_CONFIRM')), \constant('CO_' . $moduleDirNameUpper . '_' . 'CONFIRM'), true); |
|
| 55 | + xoops_cp_footer(); |
|
| 56 | + } |
|
| 57 | + break; |
|
| 58 | + case 'save': |
|
| 59 | + saveSampleData(); |
|
| 60 | + break; |
|
| 61 | + case 'clear': |
|
| 62 | + if (Request::hasVar('ok', 'REQUEST') && 1 === Request::getInt('ok', 0)) { |
|
| 63 | + if (!$GLOBALS['xoopsSecurity']->check()) { |
|
| 64 | + redirect_header($helper->url('admin/index.php'), 3, implode(',', $GLOBALS['xoopsSecurity']->getErrors())); |
|
| 65 | + } |
|
| 66 | + clearSampleData(); |
|
| 67 | + } else { |
|
| 68 | + xoops_cp_header(); |
|
| 69 | + xoops_confirm(['ok' => 1, 'op' => 'clear'], 'index.php', sprintf(constant('CO_' . $moduleDirNameUpper . '_' . 'CLEAR_SAMPLEDATA')), constant('CO_' . $moduleDirNameUpper . '_' . 'CONFIRM'), true); |
|
| 70 | + xoops_cp_footer(); |
|
| 71 | + } |
|
| 72 | + break; |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | // XMF TableLoad for SAMPLE data |
@@ -79,47 +79,47 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | function loadSampleData() |
| 81 | 81 | { |
| 82 | - global $xoopsConfig; |
|
| 83 | - $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 84 | - $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 85 | - |
|
| 86 | - $utility = new Utility(); |
|
| 87 | - $configurator = new Configurator(); |
|
| 88 | - |
|
| 89 | - $tables = \Xmf\Module\Helper::getHelper($moduleDirName) |
|
| 90 | - ->getModule() |
|
| 91 | - ->getInfo('tables'); |
|
| 92 | - |
|
| 93 | - $language = 'english/'; |
|
| 94 | - if (\is_dir(__DIR__ . '/' . $xoopsConfig['language'])) { |
|
| 95 | - $language = $xoopsConfig['language'] . '/'; |
|
| 96 | - } |
|
| 97 | - |
|
| 98 | - // load module tables |
|
| 99 | - foreach ($tables as $table) { |
|
| 100 | - $tabledata = Yaml::readWrapped($language . $table . '.yml'); |
|
| 101 | - TableLoad::truncateTable($table); |
|
| 102 | - TableLoad::loadTableFromArray($table, $tabledata); |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - // load permissions |
|
| 106 | - $table = 'group_permission'; |
|
| 107 | - $tabledata = Yaml::readWrapped($language . $table . '.yml'); |
|
| 108 | - $mid = \Xmf\Module\Helper::getHelper($moduleDirName) |
|
| 109 | - ->getModule() |
|
| 110 | - ->getVar('mid'); |
|
| 111 | - loadTableFromArrayWithReplace($table, $tabledata, 'gperm_modid', $mid); |
|
| 112 | - |
|
| 113 | - // --- COPY test folder files --------------- |
|
| 114 | - if (\is_array($configurator->copyTestFolders) && \count($configurator->copyTestFolders) > 0) { |
|
| 115 | - // $file = dirname(__DIR__) . '/testdata/images/'; |
|
| 116 | - foreach (\array_keys($configurator->copyTestFolders) as $i) { |
|
| 117 | - $src = $configurator->copyTestFolders[$i][0]; |
|
| 118 | - $dest = $configurator->copyTestFolders[$i][1]; |
|
| 119 | - $utility::rcopy($src, $dest); |
|
| 120 | - } |
|
| 121 | - } |
|
| 122 | - \redirect_header('../admin/index.php', 1, \constant('CO_' . $moduleDirNameUpper . '_' . 'LOAD_SAMPLEDATA_SUCCESS')); |
|
| 82 | + global $xoopsConfig; |
|
| 83 | + $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 84 | + $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 85 | + |
|
| 86 | + $utility = new Utility(); |
|
| 87 | + $configurator = new Configurator(); |
|
| 88 | + |
|
| 89 | + $tables = \Xmf\Module\Helper::getHelper($moduleDirName) |
|
| 90 | + ->getModule() |
|
| 91 | + ->getInfo('tables'); |
|
| 92 | + |
|
| 93 | + $language = 'english/'; |
|
| 94 | + if (\is_dir(__DIR__ . '/' . $xoopsConfig['language'])) { |
|
| 95 | + $language = $xoopsConfig['language'] . '/'; |
|
| 96 | + } |
|
| 97 | + |
|
| 98 | + // load module tables |
|
| 99 | + foreach ($tables as $table) { |
|
| 100 | + $tabledata = Yaml::readWrapped($language . $table . '.yml'); |
|
| 101 | + TableLoad::truncateTable($table); |
|
| 102 | + TableLoad::loadTableFromArray($table, $tabledata); |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + // load permissions |
|
| 106 | + $table = 'group_permission'; |
|
| 107 | + $tabledata = Yaml::readWrapped($language . $table . '.yml'); |
|
| 108 | + $mid = \Xmf\Module\Helper::getHelper($moduleDirName) |
|
| 109 | + ->getModule() |
|
| 110 | + ->getVar('mid'); |
|
| 111 | + loadTableFromArrayWithReplace($table, $tabledata, 'gperm_modid', $mid); |
|
| 112 | + |
|
| 113 | + // --- COPY test folder files --------------- |
|
| 114 | + if (\is_array($configurator->copyTestFolders) && \count($configurator->copyTestFolders) > 0) { |
|
| 115 | + // $file = dirname(__DIR__) . '/testdata/images/'; |
|
| 116 | + foreach (\array_keys($configurator->copyTestFolders) as $i) { |
|
| 117 | + $src = $configurator->copyTestFolders[$i][0]; |
|
| 118 | + $dest = $configurator->copyTestFolders[$i][1]; |
|
| 119 | + $utility::rcopy($src, $dest); |
|
| 120 | + } |
|
| 121 | + } |
|
| 122 | + \redirect_header('../admin/index.php', 1, \constant('CO_' . $moduleDirNameUpper . '_' . 'LOAD_SAMPLEDATA_SUCCESS')); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | /** |
@@ -127,38 +127,38 @@ discard block |
||
| 127 | 127 | */ |
| 128 | 128 | function saveSampleData() |
| 129 | 129 | { |
| 130 | - global $xoopsConfig; |
|
| 131 | - $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 132 | - $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 133 | - $helper = Helper::getInstance(); |
|
| 134 | - $tables = $helper->getModule() |
|
| 135 | - ->getInfo('tables'); |
|
| 136 | - |
|
| 137 | - $languageFolder = __DIR__ . '/' . $xoopsConfig['language']; |
|
| 138 | - if (!\file_exists($languageFolder . '/')) { |
|
| 139 | - Utility::createFolder($languageFolder . '/'); |
|
| 140 | - } |
|
| 141 | - $exportFolder = $languageFolder . '/Exports-' . date('Y-m-d-H-i-s') . '/'; |
|
| 142 | - Utility::createFolder($exportFolder); |
|
| 143 | - |
|
| 144 | - // save module tables |
|
| 145 | - foreach ($tables as $table) { |
|
| 146 | - TableLoad::saveTableToYamlFile($table, $exportFolder . $table . '.yml'); |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - // save permissions |
|
| 150 | - $criteria = new \CriteriaCompo(); |
|
| 151 | - $criteria->add( |
|
| 152 | - new \Criteria( |
|
| 153 | - 'gperm_modid', $helper->getModule() |
|
| 154 | - ->getVar('mid') |
|
| 155 | - ) |
|
| 156 | - ); |
|
| 157 | - $skipColumns[] = 'gperm_id'; |
|
| 158 | - TableLoad::saveTableToYamlFile('group_permission', $exportFolder . 'group_permission.yml', $criteria, $skipColumns); |
|
| 159 | - unset($criteria); |
|
| 160 | - |
|
| 161 | - \redirect_header('../admin/index.php', 1, \constant('CO_' . $moduleDirNameUpper . '_' . 'SAVE_SAMPLEDATA_SUCCESS')); |
|
| 130 | + global $xoopsConfig; |
|
| 131 | + $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 132 | + $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 133 | + $helper = Helper::getInstance(); |
|
| 134 | + $tables = $helper->getModule() |
|
| 135 | + ->getInfo('tables'); |
|
| 136 | + |
|
| 137 | + $languageFolder = __DIR__ . '/' . $xoopsConfig['language']; |
|
| 138 | + if (!\file_exists($languageFolder . '/')) { |
|
| 139 | + Utility::createFolder($languageFolder . '/'); |
|
| 140 | + } |
|
| 141 | + $exportFolder = $languageFolder . '/Exports-' . date('Y-m-d-H-i-s') . '/'; |
|
| 142 | + Utility::createFolder($exportFolder); |
|
| 143 | + |
|
| 144 | + // save module tables |
|
| 145 | + foreach ($tables as $table) { |
|
| 146 | + TableLoad::saveTableToYamlFile($table, $exportFolder . $table . '.yml'); |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + // save permissions |
|
| 150 | + $criteria = new \CriteriaCompo(); |
|
| 151 | + $criteria->add( |
|
| 152 | + new \Criteria( |
|
| 153 | + 'gperm_modid', $helper->getModule() |
|
| 154 | + ->getVar('mid') |
|
| 155 | + ) |
|
| 156 | + ); |
|
| 157 | + $skipColumns[] = 'gperm_id'; |
|
| 158 | + TableLoad::saveTableToYamlFile('group_permission', $exportFolder . 'group_permission.yml', $criteria, $skipColumns); |
|
| 159 | + unset($criteria); |
|
| 160 | + |
|
| 161 | + \redirect_header('../admin/index.php', 1, \constant('CO_' . $moduleDirNameUpper . '_' . 'SAVE_SAMPLEDATA_SUCCESS')); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -166,18 +166,18 @@ discard block |
||
| 166 | 166 | */ |
| 167 | 167 | function exportSchema() |
| 168 | 168 | { |
| 169 | - $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 170 | - $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 171 | - |
|
| 172 | - try { |
|
| 173 | - // TODO set exportSchema |
|
| 174 | - // $migrate = new Migrate($moduleDirName); |
|
| 175 | - // $migrate->saveCurrentSchema(); |
|
| 176 | - // |
|
| 177 | - // redirect_header('../admin/index.php', 1, constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA_SUCCESS')); |
|
| 178 | - } catch (\Throwable $e) { |
|
| 179 | - exit(constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA_ERROR')); |
|
| 180 | - } |
|
| 169 | + $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 170 | + $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 171 | + |
|
| 172 | + try { |
|
| 173 | + // TODO set exportSchema |
|
| 174 | + // $migrate = new Migrate($moduleDirName); |
|
| 175 | + // $migrate->saveCurrentSchema(); |
|
| 176 | + // |
|
| 177 | + // redirect_header('../admin/index.php', 1, constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA_SUCCESS')); |
|
| 178 | + } catch (\Throwable $e) { |
|
| 179 | + exit(constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA_ERROR')); |
|
| 180 | + } |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | /** |
@@ -194,46 +194,46 @@ discard block |
||
| 194 | 194 | */ |
| 195 | 195 | function loadTableFromArrayWithReplace($table, $data, $search, $replace) |
| 196 | 196 | { |
| 197 | - /** @var \XoopsMySQLDatabase $db */ |
|
| 198 | - $db = \XoopsDatabaseFactory::getDatabaseConnection(); |
|
| 199 | - |
|
| 200 | - $prefixedTable = $db->prefix($table); |
|
| 201 | - $count = 0; |
|
| 202 | - |
|
| 203 | - $sql = 'DELETE FROM ' . $prefixedTable . ' WHERE `' . $search . '`=' . $db->quote($replace); |
|
| 204 | - |
|
| 205 | - $result = $db->queryF($sql); |
|
| 206 | - |
|
| 207 | - if ($result) { |
|
| 208 | - foreach ($data as $row) { |
|
| 209 | - $insertInto = 'INSERT INTO ' . $prefixedTable . ' ('; |
|
| 210 | - $valueClause = ' VALUES ('; |
|
| 211 | - $first = true; |
|
| 212 | - foreach ($row as $column => $value) { |
|
| 213 | - if ($first) { |
|
| 214 | - $first = false; |
|
| 215 | - } else { |
|
| 216 | - $insertInto .= ', '; |
|
| 217 | - $valueClause .= ', '; |
|
| 218 | - } |
|
| 219 | - |
|
| 220 | - $insertInto .= $column; |
|
| 221 | - if ($search === $column) { |
|
| 222 | - $valueClause .= $db->quote($replace); |
|
| 223 | - } else { |
|
| 224 | - $valueClause .= $db->quote($value); |
|
| 225 | - } |
|
| 226 | - } |
|
| 227 | - |
|
| 228 | - $sql = $insertInto . ') ' . $valueClause . ')'; |
|
| 229 | - |
|
| 230 | - $result = $db->queryF($sql); |
|
| 231 | - if (false !== $result) { |
|
| 232 | - ++$count; |
|
| 233 | - } |
|
| 234 | - } |
|
| 235 | - } |
|
| 236 | - return $count; |
|
| 197 | + /** @var \XoopsMySQLDatabase $db */ |
|
| 198 | + $db = \XoopsDatabaseFactory::getDatabaseConnection(); |
|
| 199 | + |
|
| 200 | + $prefixedTable = $db->prefix($table); |
|
| 201 | + $count = 0; |
|
| 202 | + |
|
| 203 | + $sql = 'DELETE FROM ' . $prefixedTable . ' WHERE `' . $search . '`=' . $db->quote($replace); |
|
| 204 | + |
|
| 205 | + $result = $db->queryF($sql); |
|
| 206 | + |
|
| 207 | + if ($result) { |
|
| 208 | + foreach ($data as $row) { |
|
| 209 | + $insertInto = 'INSERT INTO ' . $prefixedTable . ' ('; |
|
| 210 | + $valueClause = ' VALUES ('; |
|
| 211 | + $first = true; |
|
| 212 | + foreach ($row as $column => $value) { |
|
| 213 | + if ($first) { |
|
| 214 | + $first = false; |
|
| 215 | + } else { |
|
| 216 | + $insertInto .= ', '; |
|
| 217 | + $valueClause .= ', '; |
|
| 218 | + } |
|
| 219 | + |
|
| 220 | + $insertInto .= $column; |
|
| 221 | + if ($search === $column) { |
|
| 222 | + $valueClause .= $db->quote($replace); |
|
| 223 | + } else { |
|
| 224 | + $valueClause .= $db->quote($value); |
|
| 225 | + } |
|
| 226 | + } |
|
| 227 | + |
|
| 228 | + $sql = $insertInto . ') ' . $valueClause . ')'; |
|
| 229 | + |
|
| 230 | + $result = $db->queryF($sql); |
|
| 231 | + if (false !== $result) { |
|
| 232 | + ++$count; |
|
| 233 | + } |
|
| 234 | + } |
|
| 235 | + } |
|
| 236 | + return $count; |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | /** |
@@ -241,16 +241,16 @@ discard block |
||
| 241 | 241 | */ |
| 242 | 242 | function clearSampleData() |
| 243 | 243 | { |
| 244 | - $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 245 | - $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 246 | - $helper = Helper::getInstance(); |
|
| 247 | - // Load language files |
|
| 248 | - $helper->loadLanguage('common'); |
|
| 249 | - $tables = $helper->getModule() |
|
| 250 | - ->getInfo('tables'); |
|
| 251 | - // truncate module tables |
|
| 252 | - foreach ($tables as $table) { |
|
| 253 | - \Xmf\Database\TableLoad::truncateTable($table); |
|
| 254 | - } |
|
| 255 | - redirect_header($helper->url('admin/index.php'), 1, constant('CO_' . $moduleDirNameUpper . '_' . 'CLEAR_SAMPLEDATA_OK')); |
|
| 244 | + $moduleDirName = \basename(\dirname(__DIR__)); |
|
| 245 | + $moduleDirNameUpper = \mb_strtoupper($moduleDirName); |
|
| 246 | + $helper = Helper::getInstance(); |
|
| 247 | + // Load language files |
|
| 248 | + $helper->loadLanguage('common'); |
|
| 249 | + $tables = $helper->getModule() |
|
| 250 | + ->getInfo('tables'); |
|
| 251 | + // truncate module tables |
|
| 252 | + foreach ($tables as $table) { |
|
| 253 | + \Xmf\Database\TableLoad::truncateTable($table); |
|
| 254 | + } |
|
| 255 | + redirect_header($helper->url('admin/index.php'), 1, constant('CO_' . $moduleDirNameUpper . '_' . 'CLEAR_SAMPLEDATA_OK')); |
|
| 256 | 256 | } |