This commit is contained in:
2019-11-12 12:17:21 +01:00
parent f82ac6c77a
commit 830fc14d62
27 changed files with 1041 additions and 0 deletions

View 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>';
?>