Add form
This commit is contained in:
20
static/views/display_open.php
Normal file
20
static/views/display_open.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
echo '<table>
|
||||
<th>'.$this->oLang->texts['W_DAY'].'</th>
|
||||
<th>'.$this->oLang->texts['W_START'].'</th>
|
||||
<th>'.$this->oLang->texts['W_END'].'</th>
|
||||
<th>'.$this->oLang->texts['W_NOTICE'].'</th>';
|
||||
|
||||
foreach($this->settings['opening_days'] as $day){
|
||||
echo '<tr>
|
||||
<td>'.constant(strtoupper($day)).'</td>
|
||||
<td>'.$this->aOpen[$day]["start"].'</td>
|
||||
<td>'.$this->aOpen[$day]["end"].'</td>
|
||||
<td>'.$this->aOpen[$day]["notice"].'</td>
|
||||
</tr>';
|
||||
}
|
||||
echo '</table>';
|
||||
|
||||
?>
|
||||
|
||||
|
Reference in New Issue
Block a user