XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
install_langselect.tpl.php
1<select name="lang">
2 <?php
3 for ( $i = 0; $i < (is_countable($this->v( 'languages' )) ? count( $this->v( 'languages' ) ) : 0); $i ++ ) {
4 ?>
5 <option
6 value="<?php $this->e( 'languages', $i ) ?>" <?php $this->e( 'selected', $i ) ?>><?php $this->e( 'languages', $i ) ?></option>
7 <?php
8 } ?>
9</select>
10
11<noscript>
12 <style>
13 .nojs{
14 display: none; /* Do not display confirmation */
15 }
16 </style>
17 <div class="confirmError"><h2>JavaScript is disabled. Please enabled JavaScript.</h2></div>
18</noscript>
19
20<div class="confirmInfo nojs"><?php echo _INSTALL_L128 ?></div>
21<?php
22if (version_compare(PHP_VERSION, '7.4.0', '>')) {
23 echo '<div class="confirmOk nojs">PHP version <code>' . PHP_VERSION . '</code></div>';
24}
25?>
26