Add form
This commit is contained in:
47
static/views/header.php
Normal file
47
static/views/header.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
$header = '
|
||||
<div id="header">
|
||||
<div class="side-description">
|
||||
<a class="logo" href="./index.php" title="'.$this->oLang->texts['HOME'].'">
|
||||
<img src="images/logo_library.png" border=0 />
|
||||
</a>
|
||||
<h1>'.$this->oLang->library_info['LIBRARY_NAME'].'</h1>
|
||||
<p>'.$this->oLang->library_info['LIBRARY_DESCRIPTION'].'</p>
|
||||
</div>';
|
||||
if ($this->settings['enable_status'] == 1){
|
||||
$oPresence = new Presence;
|
||||
$status = $oPresence->get_status();
|
||||
$header .=
|
||||
'<div class="status">
|
||||
<h1>'.$this->oLang->texts['CURRENT_STATUS'].'</h1>';
|
||||
if($status){
|
||||
$header.= $this->oLang->texts['OPEN'];
|
||||
}
|
||||
else{
|
||||
$header.= $this->oLang->texts['CLOSE'];
|
||||
}
|
||||
}
|
||||
$header.='<br><br>
|
||||
<div class="language">
|
||||
<form action="'.$_SERVER["PHP_SELF"].'" method="post">
|
||||
<input type = hidden name="ac" value = "language_change">'.
|
||||
$this->oLang->texts['LANGUAGE'].':<input type="radio" id="english" name="language" value="english"';
|
||||
if ($_SESSION['language']=='english'){
|
||||
$header .= 'checked';
|
||||
}
|
||||
$header.= '>
|
||||
<label for="english">'.$this->oLang->texts['ENGLISH'].' </label>
|
||||
<input type="radio" id="german" name="language" value="german"';
|
||||
if (($_SESSION['language']=="german") or (!isset($_SESSION['language']))){
|
||||
$header .= ' checked';
|
||||
}
|
||||
$header.= '>
|
||||
<label for id ="german">'.$this->oLang->texts['GERMAN'].'</label><br>
|
||||
<input type="submit" value="'.$this->oLang->texts['CHANGE_LANGUAGE'].'">
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>';
|
||||
echo $header;
|
||||
?>
|
Reference in New Issue
Block a user