XOOPS  2.6.0
xoopslists.php
Go to the documentation of this file.
1 <?php
2 /*
3  You may not change or alter any portion of this comment or credits
4  of supporting developers from this source code or any supporting source code
5  which is considered copyrighted (c) material of the original comment or credit authors.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 */
11 
32 {
37  public static function getTimeZoneList()
38  {
39  $time_zone_list = array(
40  '-12' => XoopsLocale::L_TZ_GMTM12,
41  '-11' => XoopsLocale::L_TZ_GMTM11,
42  '-10' => XoopsLocale::L_TZ_GMTM10,
49  '-3.5' => XoopsLocale::L_TZ_GMTM35,
57  '3.5' => XoopsLocale::L_TZ_GMTP35,
59  '4.5' => XoopsLocale::L_TZ_GMTP45,
61  '5.5' => XoopsLocale::L_TZ_GMTP55,
66  '9.5' => XoopsLocale::L_TZ_GMTP95,
70  );
71 
72  return $time_zone_list;
73  }
74 
81  public static function getThemesList()
82  {
83  return XoopsLists::getDirListAsArray(\XoopsBaseConfig::get('themes-path') . '/');
84  }
85 
92  public static function getModulesList()
93  {
94  return XoopsLists::getDirListAsArray(\XoopsBaseConfig::get('root-path') . '/modules/');
95  }
96 
103  public static function getEditorList()
104  {
105  return XoopsLists::getDirListAsArray(\XoopsBaseConfig::get('root-path') . '/class/xoopseditor/');
106  }
107 
117  public static function getDirListAsArray($dirname)
118  {
119  $ignored = array(
120  'cvs',
121  '_darcs'
122  );
123  $list = array();
124  if (substr($dirname, -1) != '/') {
125  $dirname .= '/';
126  }
127  if (is_dir($dirname) AND $handle = opendir($dirname)) {
128  while ($file = readdir($handle)) {
129  if (substr($file, 0, 1) == '.' || in_array(strtolower($file), $ignored)) {
130  continue;
131  }
132  if (is_dir($dirname . $file)) {
133  $list[$file] = $file;
134  }
135  }
136  closedir($handle);
137  asort($list);
138  reset($list);
139  }
140 
141  return $list;
142  }
143 
154  public static function getFileListAsArray($dirname, $prefix = '')
155  {
156  $filelist = array();
157  if (substr($dirname, -1) == '/') {
158  $dirname = substr($dirname, 0, -1);
159  }
160  if (is_dir($dirname) && $handle = opendir($dirname)) {
161  while (false !== ($file = readdir($handle))) {
162  if (!preg_match('/^[\.]{1,2}$/', $file) && is_file($dirname . '/' . $file)) {
163  $file = $prefix . $file;
164  $filelist[$file] = $file;
165  }
166  }
167  closedir($handle);
168  asort($filelist);
169  reset($filelist);
170  }
171 
172  return $filelist;
173  }
174 
185  public static function getImgListAsArray($dirname, $prefix = '')
186  {
187  $filelist = array();
188  if (is_dir($dirname) AND $handle = opendir($dirname)) {
189  while (false !== ($file = readdir($handle))) {
190  if (preg_match('/\.(gif|jpg|jpeg|png|swf)$/i', $file)) {
191  $file = $prefix . $file;
192  $filelist[$file] = $file;
193  }
194  }
195  closedir($handle);
196  asort($filelist);
197  reset($filelist);
198  }
199 
200  return $filelist;
201  }
202 
213  public static function getHtmlListAsArray($dirname, $prefix = '')
214  {
215  $filelist = array();
216  if (is_dir($dirname) AND $handle = opendir($dirname)) {
217  while (false !== ($file = readdir($handle))) {
218  if ((preg_match('/\.(htm|html|xhtml)$/i', $file) && !is_dir($file))) {
219  $file = $prefix . $file;
220  $filelist[$file] = $prefix . $file;
221  }
222  }
223  closedir($handle);
224  asort($filelist);
225  reset($filelist);
226  }
227 
228  return $filelist;
229  }
230 
241  public static function getAvatarsList($avatar_dir = '')
242  {
244  if ($avatar_dir != '') {
245  $avatars = XoopsLists::getImgListAsArray($xoops_root_path . '/images/avatar/' . $avatar_dir . '/', $avatar_dir . '/');
246  } else {
247  $avatars = XoopsLists::getImgListAsArray($xoops_root_path . '/images/avatar/');
248  }
249 
250  return $avatars;
251  }
252 
259  public static function getAllAvatarsList()
260  {
261  $avatars = array();
263  $dirlist = XoopsLists::getDirListAsArray($xoops_root_path . '/images/avatar/');
264  if (count($dirlist) > 0) {
265  foreach ($dirlist as $dir) {
266  $avatars[$dir] = XoopsLists::getImgListAsArray($xoops_root_path . '/images/avatar/' . $dir . '/', $dir . '/');
267  }
268  } else {
269  return false;
270  }
271 
272  return $avatars;
273  }
274 
285  public static function getSubjectsList($sub_dir = '')
286  {
288  if ($sub_dir != '') {
289  $subjects = XoopsLists::getImgListAsArray($xoops_root_path . '/images/subject/' . $sub_dir, $sub_dir . '/');
290  } else {
291  $subjects = XoopsLists::getImgListAsArray($xoops_root_path . '/images/subject/');
292  }
293 
294  return $subjects;
295  }
296 
303  public static function getLangList()
304  {
305  $lang_list = XoopsLists::getDirListAsArray(\XoopsBaseConfig::get('root-path') . '/language/');
306 
307  return $lang_list;
308  }
309 
316  public static function getLocaleList()
317  {
318  $lang_list = XoopsLists::getDirListAsArray(\XoopsBaseConfig::get('root-path') . '/locale/');
319 
320  return $lang_list;
321  }
322 
329  public static function getCountryList()
330  {
331  $country_list = array(
332  "" => "-",
383  "CS" => XoopsLocale::L_COUNTRY_CS, // Not listed in ISO 3166
408  "FX" => XoopsLocale::L_COUNTRY_FX, // Not listed in ISO 3166
502  "NT" => XoopsLocale::L_COUNTRY_NT, // Not listed in ISO 3166
542  "SU" => XoopsLocale::L_COUNTRY_SU, // Not listed in ISO 3166
557  "TP" => XoopsLocale::L_COUNTRY_TP, // Not listed in ISO 3166
565  "UK" => XoopsLocale::L_COUNTRY_UK, // Not listed in ISO 3166
581  "YU" => XoopsLocale::L_COUNTRY_YU, // Not listed in ISO 3166
584  "ZR" => XoopsLocale::L_COUNTRY_ZR, // Not listed in ISO 3166
586  );
587  asort($country_list);
588  reset($country_list);
589 
590  return $country_list;
591  }
592 
600  public static function getHtmlList()
601  {
602  $html_list = array(
603  'a' => '&lt;a&gt;',
604  'abbr' => '&lt;abbr&gt;',
605  'acronym' => '&lt;acronym&gt;',
606  'address' => '&lt;address&gt;',
607  'b' => '&lt;b&gt;',
608  'bdo' => '&lt;bdo&gt;',
609  'big' => '&lt;big&gt;',
610  'blockquote' => '&lt;blockquote&gt;',
611  'br' => '&lt;br&gt;',
612  'caption' => '&lt;caption&gt;',
613  'cite' => '&lt;cite&gt;',
614  'code' => '&lt;code&gt;',
615  'col' => '&lt;col&gt;',
616  'colgroup' => '&lt;colgroup&gt;',
617  'dd' => '&lt;dd&gt;',
618  'del' => '&lt;del&gt;',
619  'dfn' => '&lt;dfn&gt;',
620  'div' => '&lt;div&gt;',
621  'dl' => '&lt;dl&gt;',
622  'dt' => '&lt;dt&gt;',
623  'em' => '&lt;em&gt;',
624  'font' => '&lt;font&gt;',
625  'h1' => '&lt;h1&gt;',
626  'h2' => '&lt;h2&gt;',
627  'h3' => '&lt;h3&gt;',
628  'h4' => '&lt;h4&gt;',
629  'h5' => '&lt;h5&gt;',
630  'h6' => '&lt;h6&gt;',
631  'hr' => '&lt;hr&gt;',
632  'i' => '&lt;i&gt;',
633  'img' => '&lt;img&gt;',
634  'ins' => '&lt;ins&gt;',
635  'kbd' => '&lt;kbd&gt;',
636  'li' => '&lt;li&gt;',
637  'map' => '&lt;map&gt;',
638  'object' => '&lt;object&gt;',
639  'ol' => '&lt;ol&gt;',
640  'p' => '&lt;p&gt;',
641  'pre' => '&lt;pre&gt;',
642  's' => '&lt;s&gt;',
643  'samp' => '&lt;samp&gt;',
644  'small' => '&lt;small&gt;',
645  'span' => '&lt;span&gt;',
646  'strike' => '&lt;strike&gt;',
647  'strong' => '&lt;strong&gt;',
648  'sub' => '&lt;sub&gt;',
649  'sup' => '&lt;sup&gt;',
650  'table' => '&lt;table&gt;',
651  'tbody' => '&lt;tbody&gt;',
652  'td' => '&lt;td&gt;',
653  'tfoot' => '&lt;tfoot&gt;',
654  'th' => '&lt;th&gt;',
655  'thead' => '&lt;thead&gt;',
656  'tr' => '&lt;tr&gt;',
657  'tt' => '&lt;tt&gt;',
658  'u' => '&lt;u&gt;',
659  'ul' => '&lt;ul&gt;',
660  'var' => '&lt;var&gt;'
661  );
662  asort($html_list);
663  reset($html_list);
664 
665  return $html_list;
666  }
667 
675  public static function getUserRankList()
676  {
677  $db = Xoops::getInstance()->db();
679 
680  $ret = array();
681 
682  $sql = $db->createXoopsQueryBuilder();
683  $eb = $sql->expr();
684  $sql->select('rank_id')
685  ->addSelect('rank_title')
686  ->fromPrefix('ranks', 'r')
687  ->where($eb->eq('rank_special', ':rankspecial'))
688  ->orderBy('rank_title')
689  ->setParameter(':rankspecial', 1);
690 
691  $result = $sql->execute();
692  while ($myrow = $result->fetch(PDO::FETCH_ASSOC)) {
693  $ret[$myrow['rank_id']] = $myts->htmlspecialchars($myrow['rank_title']);
694  }
695 
696  return $ret;
697  }
698 }
const L_COUNTRY_GR
Definition: en_US.php:608
const L_COUNTRY_IT
Definition: en_US.php:629
const L_TZ_GMTM2
Definition: en_US.php:796
const L_COUNTRY_TJ
Definition: en_US.php:737
const L_COUNTRY_DE
Definition: en_US.php:575
const L_COUNTRY_ZA
Definition: en_US.php:768
const L_COUNTRY_CN
Definition: en_US.php:566
const L_COUNTRY_LV
Definition: en_US.php:653
const L_COUNTRY_GD
Definition: en_US.php:597
const L_TZ_GMTP6
Definition: en_US.php:816
const L_COUNTRY_SY
Definition: en_US.php:730
const L_COUNTRY_TK
Definition: en_US.php:738
const L_COUNTRY_BY
Definition: en_US.php:554
const L_COUNTRY_CO
Definition: en_US.php:567
const L_COUNTRY_IS
Definition: en_US.php:628
const L_COUNTRY_KZ
Definition: en_US.php:643
const L_COUNTRY_TC
Definition: en_US.php:732
const L_COUNTRY_LS
Definition: en_US.php:650
const L_COUNTRY_SA
Definition: en_US.php:712
const L_COUNTRY_CH
Definition: en_US.php:561
const L_COUNTRY_PW
Definition: en_US.php:704
const L_COUNTRY_IN
Definition: en_US.php:624
const L_COUNTRY_AG
Definition: en_US.php:522
const L_COUNTRY_LB
Definition: en_US.php:645
const L_COUNTRY_MZ
Definition: en_US.php:677
const L_COUNTRY_NE
Definition: en_US.php:680
const L_COUNTRY_BO
Definition: en_US.php:548
const L_COUNTRY_SH
Definition: en_US.php:718
static getFileListAsArray($dirname, $prefix= '')
Definition: xoopslists.php:154
const L_COUNTRY_NI
Definition: en_US.php:683
const L_COUNTRY_NO
Definition: en_US.php:685
const L_COUNTRY_TH
Definition: en_US.php:736
const L_COUNTRY_GA
Definition: en_US.php:595
static getInstance()
Definition: Xoops.php:160
const L_COUNTRY_NZ
Definition: en_US.php:690
const L_COUNTRY_SL
Definition: en_US.php:722
const L_COUNTRY_PR
Definition: en_US.php:701
const L_COUNTRY_HM
Definition: en_US.php:615
if(!isset($xoops->paths[$path_type])) if($path_type== 'var') $file
Definition: browse.php:55
const L_COUNTRY_CU
Definition: en_US.php:570
const L_COUNTRY_ME
Definition: en_US.php:658
const L_COUNTRY_YT
Definition: en_US.php:766
const L_COUNTRY_SR
Definition: en_US.php:726
static getImgListAsArray($dirname, $prefix= '')
Definition: xoopslists.php:185
const L_COUNTRY_SO
Definition: en_US.php:725
const L_COUNTRY_MO
Definition: en_US.php:666
const L_COUNTRY_GU
Definition: en_US.php:611
const L_COUNTRY_KW
Definition: en_US.php:641
const L_COUNTRY_NT
Definition: en_US.php:688
const L_COUNTRY_OM
Definition: en_US.php:691
const L_COUNTRY_BM
Definition: en_US.php:546
const L_COUNTRY_KG
Definition: en_US.php:634
$result
Definition: pda.php:33
const L_COUNTRY_SE
Definition: en_US.php:716
const L_TZ_GMTP5
Definition: en_US.php:814
const L_COUNTRY_GB
Definition: en_US.php:596
const L_COUNTRY_UK
Definition: en_US.php:751
const L_COUNTRY_SM
Definition: en_US.php:723
const L_TZ_GMTP55
Definition: en_US.php:815
const L_COUNTRY_GN
Definition: en_US.php:605
const L_COUNTRY_PG
Definition: en_US.php:695
const L_COUNTRY_WF
Definition: en_US.php:763
const L_COUNTRY_IO
Definition: en_US.php:625
const L_COUNTRY_JO
Definition: en_US.php:631
const L_TZ_GMTP7
Definition: en_US.php:817
const L_COUNTRY_DZ
Definition: en_US.php:580
const L_TZ_GMTP8
Definition: en_US.php:818
const L_TZ_GMTP95
Definition: en_US.php:820
const L_COUNTRY_AI
Definition: en_US.php:523
const L_COUNTRY_AX
Definition: en_US.php:534
const L_COUNTRY_SU
Definition: en_US.php:728
const L_COUNTRY_MU
Definition: en_US.php:672
const L_COUNTRY_UM
Definition: en_US.php:752
const L_COUNTRY_BN
Definition: en_US.php:547
const L_COUNTRY_QA
Definition: en_US.php:706
const L_COUNTRY_GE
Definition: en_US.php:598
const L_COUNTRY_PK
Definition: en_US.php:697
const L_COUNTRY_TG
Definition: en_US.php:735
const L_COUNTRY_NA
Definition: en_US.php:678
const L_COUNTRY_LC
Definition: en_US.php:646
const L_COUNTRY_CA
Definition: en_US.php:556
const L_COUNTRY_AN
Definition: en_US.php:526
const L_COUNTRY_MK
Definition: en_US.php:662
const L_COUNTRY_GT
Definition: en_US.php:610
const L_COUNTRY_AE
Definition: en_US.php:520
const L_COUNTRY_CS
Definition: en_US.php:569
const L_TZ_GMTP10
Definition: en_US.php:806
const L_COUNTRY_EG
Definition: en_US.php:583
const L_COUNTRY_GF
Definition: en_US.php:599
const L_TZ_GMT0
Definition: en_US.php:791
const L_COUNTRY_ML
Definition: en_US.php:663
const L_COUNTRY_TT
Definition: en_US.php:745
const L_COUNTRY_TL
Definition: en_US.php:739
const L_COUNTRY_GQ
Definition: en_US.php:607
const L_COUNTRY_MY
Definition: en_US.php:676
const L_COUNTRY_TF
Definition: en_US.php:734
const L_COUNTRY_BZ
Definition: en_US.php:555
const L_COUNTRY_NF
Definition: en_US.php:681
static getHtmlListAsArray($dirname, $prefix= '')
Definition: xoopslists.php:213
const L_COUNTRY_SN
Definition: en_US.php:724
const L_COUNTRY_NU
Definition: en_US.php:689
const L_TZ_GMTP9
Definition: en_US.php:819
const L_TZ_GMTP35
Definition: en_US.php:811
const L_COUNTRY_CX
Definition: en_US.php:572
const L_TZ_GMTM7
Definition: en_US.php:802
const L_TZ_GMTP3
Definition: en_US.php:810
const L_COUNTRY_RW
Definition: en_US.php:711
const L_COUNTRY_VG
Definition: en_US.php:759
const L_COUNTRY_KN
Definition: en_US.php:638
const L_TZ_GMTM35
Definition: en_US.php:798
const L_COUNTRY_MV
Definition: en_US.php:673
static getUserRankList()
Definition: xoopslists.php:675
const L_COUNTRY_TZ
Definition: en_US.php:748
const L_TZ_GMTM11
Definition: en_US.php:794
const L_COUNTRY_ZM
Definition: en_US.php:769
const L_COUNTRY_VC
Definition: en_US.php:757
const L_COUNTRY_BJ
Definition: en_US.php:544
static getSubjectsList($sub_dir= '')
Definition: xoopslists.php:285
const L_COUNTRY_GG
Definition: en_US.php:600
const L_COUNTRY_AM
Definition: en_US.php:525
const L_COUNTRY_DM
Definition: en_US.php:578
const L_COUNTRY_AD
Definition: en_US.php:519
const L_COUNTRY_AR
Definition: en_US.php:529
const L_COUNTRY_LY
Definition: en_US.php:654
const L_COUNTRY_RU
Definition: en_US.php:710
const L_COUNTRY_PA
Definition: en_US.php:692
const L_COUNTRY_BE
Definition: en_US.php:539
const L_COUNTRY_MS
Definition: en_US.php:670
if(DIRECTORY_SEPARATOR!="/") $xoops_root_path
Definition: config.php:7
const L_COUNTRY_ST
Definition: en_US.php:727
const L_COUNTRY_EC
Definition: en_US.php:581
const L_TZ_GMTM10
Definition: en_US.php:793
const L_TZ_GMTM4
Definition: en_US.php:799
const L_COUNTRY_LU
Definition: en_US.php:652
const L_COUNTRY_IM
Definition: en_US.php:623
const L_COUNTRY_MA
Definition: en_US.php:655
const L_COUNTRY_WS
Definition: en_US.php:764
const L_COUNTRY_CM
Definition: en_US.php:565
const L_COUNTRY_SD
Definition: en_US.php:715
const L_COUNTRY_DO
Definition: en_US.php:579
const L_COUNTRY_KP
Definition: en_US.php:639
const L_COUNTRY_IQ
Definition: en_US.php:626
const L_COUNTRY_FJ
Definition: en_US.php:589
const L_COUNTRY_FI
Definition: en_US.php:588
const L_COUNTRY_RO
Definition: en_US.php:708
const L_COUNTRY_MT
Definition: en_US.php:671
const L_COUNTRY_BD
Definition: en_US.php:538
const L_COUNTRY_MN
Definition: en_US.php:665
const L_COUNTRY_VA
Definition: en_US.php:756
const L_COUNTRY_JM
Definition: en_US.php:630
const L_COUNTRY_TR
Definition: en_US.php:744
const L_COUNTRY_SI
Definition: en_US.php:719
static getThemesList()
Definition: xoopslists.php:81
const L_COUNTRY_CZ
Definition: en_US.php:574
const L_COUNTRY_MR
Definition: en_US.php:669
const L_COUNTRY_YE
Definition: en_US.php:765
const L_COUNTRY_VE
Definition: en_US.php:758
const L_COUNTRY_HN
Definition: en_US.php:616
const L_COUNTRY_MM
Definition: en_US.php:664
static getAvatarsList($avatar_dir= '')
Definition: xoopslists.php:241
const L_COUNTRY_EE
Definition: en_US.php:582
const L_COUNTRY_CD
Definition: en_US.php:558
const L_COUNTRY_TO
Definition: en_US.php:742
const L_COUNTRY_SJ
Definition: en_US.php:720
const L_COUNTRY_MP
Definition: en_US.php:667
static getAllAvatarsList()
Definition: xoopslists.php:259
const L_COUNTRY_SB
Definition: en_US.php:713
const L_COUNTRY_KI
Definition: en_US.php:636
static get($name)
const L_COUNTRY_BB
Definition: en_US.php:537
const L_COUNTRY_AQ
Definition: en_US.php:528
const L_COUNTRY_KY
Definition: en_US.php:642
const L_COUNTRY_AS
Definition: en_US.php:530
const L_COUNTRY_GM
Definition: en_US.php:604
const L_COUNTRY_PY
Definition: en_US.php:705
const L_COUNTRY_CL
Definition: en_US.php:564
const L_COUNTRY_LK
Definition: en_US.php:648
const L_COUNTRY_MD
Definition: en_US.php:657
const L_TZ_GMTM9
Definition: en_US.php:804
const L_COUNTRY_BG
Definition: en_US.php:541
const L_COUNTRY_CC
Definition: en_US.php:557
const L_COUNTRY_HU
Definition: en_US.php:619
const L_COUNTRY_VN
Definition: en_US.php:761
const L_COUNTRY_NL
Definition: en_US.php:684
const L_COUNTRY_FO
Definition: en_US.php:592
const L_COUNTRY_PL
Definition: en_US.php:698
static getEditorList()
Definition: xoopslists.php:103
const L_COUNTRY_DK
Definition: en_US.php:577
const L_COUNTRY_GH
Definition: en_US.php:601
const L_COUNTRY_YU
Definition: en_US.php:767
const L_COUNTRY_CV
Definition: en_US.php:571
const L_COUNTRY_CI
Definition: en_US.php:562
const L_COUNTRY_FX
Definition: en_US.php:594
static getModulesList()
Definition: xoopslists.php:92
const L_TZ_GMTP1
Definition: en_US.php:805
$sql
Definition: pda.php:32
const L_COUNTRY_VI
Definition: en_US.php:760
const L_COUNTRY_JP
Definition: en_US.php:632
const L_COUNTRY_GS
Definition: en_US.php:609
const L_COUNTRY_ES
Definition: en_US.php:586
const L_COUNTRY_LT
Definition: en_US.php:651
const L_COUNTRY_UY
Definition: en_US.php:754
const L_COUNTRY_US
Definition: en_US.php:753
const L_COUNTRY_FM
Definition: en_US.php:591
const L_COUNTRY_LI
Definition: en_US.php:647
const L_COUNTRY_GL
Definition: en_US.php:603
const L_COUNTRY_PE
Definition: en_US.php:693
const L_COUNTRY_BI
Definition: en_US.php:543
const L_COUNTRY_BS
Definition: en_US.php:550
const L_COUNTRY_GI
Definition: en_US.php:602
const L_COUNTRY_IL
Definition: en_US.php:622
const L_COUNTRY_BW
Definition: en_US.php:553
const L_COUNTRY_CK
Definition: en_US.php:563
const L_COUNTRY_GP
Definition: en_US.php:606
const L_COUNTRY_GW
Definition: en_US.php:612
const L_COUNTRY_MG
Definition: en_US.php:660
const L_COUNTRY_ER
Definition: en_US.php:585
const L_TZ_GMTP11
Definition: en_US.php:807
const L_COUNTRY_ID
Definition: en_US.php:620
const L_COUNTRY_PF
Definition: en_US.php:694
const L_COUNTRY_AO
Definition: en_US.php:527
const L_COUNTRY_KH
Definition: en_US.php:635
const L_TZ_GMTM6
Definition: en_US.php:801
const L_TZ_GMTM1
Definition: en_US.php:792
const L_COUNTRY_SK
Definition: en_US.php:721
const L_COUNTRY_TP
Definition: en_US.php:743
const L_TZ_GMTM12
Definition: en_US.php:795
const L_COUNTRY_PM
Definition: en_US.php:699
const L_COUNTRY_KE
Definition: en_US.php:633
const L_COUNTRY_SG
Definition: en_US.php:717
const L_COUNTRY_NG
Definition: en_US.php:682
$dirname
Definition: backend.php:38
const L_COUNTRY_PS
Definition: en_US.php:702
const L_COUNTRY_MX
Definition: en_US.php:675
const L_COUNTRY_AF
Definition: en_US.php:521
const L_COUNTRY_VU
Definition: en_US.php:762
const L_COUNTRY_BH
Definition: en_US.php:542
static getTimeZoneList()
Definition: xoopslists.php:37
const L_COUNTRY_CF
Definition: en_US.php:559
const L_COUNTRY_HR
Definition: en_US.php:617
const L_COUNTRY_MW
Definition: en_US.php:674
const L_COUNTRY_BV
Definition: en_US.php:552
const L_COUNTRY_FK
Definition: en_US.php:590
const L_COUNTRY_PN
Definition: en_US.php:700
const L_COUNTRY_NP
Definition: en_US.php:686
const L_COUNTRY_RE
Definition: en_US.php:707
const L_COUNTRY_ZR
Definition: en_US.php:770
const L_COUNTRY_ET
Definition: en_US.php:587
const L_COUNTRY_AU
Definition: en_US.php:532
const L_COUNTRY_NC
Definition: en_US.php:679
const L_COUNTRY_EH
Definition: en_US.php:584
const L_COUNTRY_BA
Definition: en_US.php:536
const L_COUNTRY_AW
Definition: en_US.php:533
const L_COUNTRY_MF
Definition: en_US.php:659
const L_COUNTRY_TD
Definition: en_US.php:733
const L_COUNTRY_IE
Definition: en_US.php:621
$myts
Definition: edituser.php:38
const L_COUNTRY_KR
Definition: en_US.php:640
const L_COUNTRY_LA
Definition: en_US.php:644
$dir
Definition: browse.php:56
const L_COUNTRY_UA
Definition: en_US.php:749
const L_COUNTRY_FR
Definition: en_US.php:593
const L_TZ_GMTM5
Definition: en_US.php:800
const L_COUNTRY_MQ
Definition: en_US.php:668
const L_COUNTRY_AZ
Definition: en_US.php:535
const L_COUNTRY_CR
Definition: en_US.php:568
const L_COUNTRY_PT
Definition: en_US.php:703
const L_COUNTRY_IR
Definition: en_US.php:627
const L_COUNTRY_AT
Definition: en_US.php:531
static getHtmlList()
Definition: xoopslists.php:600
const L_COUNTRY_RS
Definition: en_US.php:709
static getCountryList()
Definition: xoopslists.php:329
const L_COUNTRY_GY
Definition: en_US.php:613
const L_COUNTRY_ZW
Definition: en_US.php:771
const L_COUNTRY_TW
Definition: en_US.php:747
static getDirListAsArray($dirname)
Definition: xoopslists.php:117
const L_COUNTRY_SZ
Definition: en_US.php:731
const L_COUNTRY_TM
Definition: en_US.php:740
const L_TZ_GMTM8
Definition: en_US.php:803
const L_COUNTRY_BF
Definition: en_US.php:540
const L_COUNTRY_SV
Definition: en_US.php:729
const L_COUNTRY_BR
Definition: en_US.php:549
const L_COUNTRY_MH
Definition: en_US.php:661
const L_COUNTRY_MC
Definition: en_US.php:656
static getLocaleList()
Definition: xoopslists.php:316
const L_COUNTRY_PH
Definition: en_US.php:696
const L_TZ_GMTP2
Definition: en_US.php:809
static getLangList()
Definition: xoopslists.php:303
const L_COUNTRY_DJ
Definition: en_US.php:576
const L_COUNTRY_SC
Definition: en_US.php:714
const L_COUNTRY_CY
Definition: en_US.php:573
const L_COUNTRY_UG
Definition: en_US.php:750
const L_TZ_GMTP45
Definition: en_US.php:813
const L_COUNTRY_TV
Definition: en_US.php:746
const L_TZ_GMTP12
Definition: en_US.php:808
const L_COUNTRY_TN
Definition: en_US.php:741
const L_TZ_GMTM3
Definition: en_US.php:797
const L_COUNTRY_HK
Definition: en_US.php:614
const L_COUNTRY_NR
Definition: en_US.php:687
const L_COUNTRY_HT
Definition: en_US.php:618
const L_COUNTRY_BT
Definition: en_US.php:551
const L_COUNTRY_UZ
Definition: en_US.php:755
const L_COUNTRY_KM
Definition: en_US.php:637
const L_COUNTRY_AL
Definition: en_US.php:524
const L_COUNTRY_CG
Definition: en_US.php:560
const L_COUNTRY_LR
Definition: en_US.php:649
const L_COUNTRY_BL
Definition: en_US.php:545
const L_TZ_GMTP4
Definition: en_US.php:812