-
Notifications
You must be signed in to change notification settings - Fork 4
/
languages.php
102 lines (87 loc) · 3.76 KB
/
languages.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
declare(strict_types=1);
/*
You may not change or alter any portion of this comment or credits
of supporting developers from this source code or any supporting source code
which is considered copyrighted (c) material of the original comment or credit authors.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* wgTransifex module for xoops
*
* @copyright 2020 XOOPS Project (https://xooops.org)
* @license GPL 2.0 or later
* @since 1.0
* @min_xoops 2.5.9
* @author TDM XOOPS - Email:<[email protected]> - Website:<http://xoops.org>
*/
use Xmf\Request;
use XoopsModules\Wgtransifex\{Helper,
LanguagesHandler,
Utility
};
require __DIR__ . '/header.php';
$GLOBALS['xoopsOption']['template_main'] = 'wgtransifex_languages.tpl';
require_once \XOOPS_ROOT_PATH . '/header.php';
$op = Request::getCmd('op', 'list');
$start = Request::getInt('start');
/** @var Helper $helper */
$limit = Request::getInt('limit', $helper->getConfig('userpager'));
$langId = Request::getInt('lang_id');
// Define Stylesheet
$GLOBALS['xoTheme']->addStylesheet($style, null);
$GLOBALS['xoopsTpl']->assign('xoops_icons32_url', XOOPS_ICONS32_URL);
$GLOBALS['xoopsTpl']->assign('wgtransifex_url', \WGTRANSIFEX_URL);
$GLOBALS['xoopsTpl']->assign('modPathIconFlags', \WGTRANSIFEX_IMAGE_URL . '/flags/');
$GLOBALS['xoopsTpl']->assign('showItem', $langId > 0);
$keywords = [];
switch ($op) {
case 'show':
case 'list':
default:
$crLanguages = new \CriteriaCompo();
if ($langId > 0) {
$crLanguages->add(new \Criteria('lang_id', $langId));
}
/** @var LanguagesHandler $languagesHandler */
$languagesCount = $languagesHandler->getCount($crLanguages);
$GLOBALS['xoopsTpl']->assign('languagesCount', $languagesCount);
$crLanguages->setSort('lang_name');
$crLanguages->setStart($start);
$crLanguages->setLimit($limit);
$languagesAll = $languagesHandler->getAll($crLanguages);
if ($languagesCount > 0) {
$languages = [];
// Get All Languages
foreach (\array_keys($languagesAll) as $i) {
$languages[$i] = $languagesAll[$i]->getValuesLanguages();
$keywords[$i] = $languagesAll[$i]->getVar('lang_name');
}
$GLOBALS['xoopsTpl']->assign('languages', $languages);
unset($languages);
// Display Navigation
if ($languagesCount > $limit) {
require_once \XOOPS_ROOT_PATH . '/class/pagenav.php';
$pagenav = new \XoopsPageNav($languagesCount, $limit, $start, 'start', 'op=list&limit=' . $limit);
$GLOBALS['xoopsTpl']->assign('pagenav', $pagenav->renderNav());
}
$GLOBALS['xoopsTpl']->assign('type', $helper->getConfig('table_type'));
$GLOBALS['xoopsTpl']->assign('table_type', $helper->getConfig('table_type'));
$GLOBALS['xoopsTpl']->assign('panel_type', $helper->getConfig('panel_type'));
$GLOBALS['xoopsTpl']->assign('divideby', $helper->getConfig('divideby'));
$GLOBALS['xoopsTpl']->assign('numb_col', $helper->getConfig('numb_col'));
}
break;
}
// Breadcrumbs
$xoBreadcrumbs[] = ['title' => \_MA_WGTRANSIFEX_LANGUAGES];
// Keywords
Utility::metaKeywords($helper->getConfig('keywords') . ', ' . \implode(',', $keywords));
unset($keywords);
// Description
Utility::metaDescription(\_MA_WGTRANSIFEX_LANGUAGES);
$GLOBALS['xoopsTpl']->assign('xoops_mpageurl', \WGTRANSIFEX_URL . '/languages.php');
$GLOBALS['xoopsTpl']->assign('wgtransifex_upload_url', \WGTRANSIFEX_UPLOAD_URL);
require __DIR__ . '/footer.php';