New upstream version 0.6.27

This commit is contained in:
geos_one
2025-08-06 18:11:51 +02:00
parent a6b4158f1f
commit 56a986c0ba
563 changed files with 45811 additions and 35282 deletions

View File

@@ -1,26 +1,26 @@
<?php
<?php
echo "<div class=\"ui-widget\">\n";
echo "<div class=\"p2 ui-widget-header ui-corner-top\">\n";
echo Kohana::lang('common.timerange-box-header')."\n";
echo Kohana::lang('common.timerange-box-header') . "\n";
echo "</div>\n";
echo "<div class=\"p4 ui-widget-content ui-corner-bottom\">\n";
$start = $this->session->get('start','');
$end = $this->session->get('end','');
$path = pnp::addToUri(array('start' => $start,'end' => $end));
if($start && $end){
echo "<a class=\"multi0\" href=\"".$path."\">".Kohana::lang('common.timerange-selector-link')."</a><br>\n";
$start = $this->session->get('start', '');
$end = $this->session->get('end', '');
$path = pnp::addToUri(array('view' => '', 'start' => $start,'end' => $end));
if ($start && $end) {
echo "<a class=\"multi0\" href=\"" . $path . "\">" . Kohana::lang('common.timerange-selector-link') . "</a><br>\n";
}
if($start && !$end){
echo "<a class=\"multi0\" href=\"".$path."\">".Kohana::lang('common.timerange-selector-link')."</a><br>\n";
if ($start && !$end) {
echo "<a class=\"multi0\" href=\"" . $path . "\">" . Kohana::lang('common.timerange-selector-link') . "</a><br>\n";
}
$path = pnp::addToUri(array('view' => '', 'start' => '', 'end' => ''));
echo "<a class=\"multi0\" href=\"".$path."\">".Kohana::lang('common.timerange-selector-overview')."</a><br>\n";
echo "<a class=\"multi0\" href=\"" . $path . "\">" . Kohana::lang('common.timerange-selector-overview') . "</a><br>\n";
foreach($this->config->views as $key=>$view){
$path = pnp::addToUri(array('view' => $key, 'start' => '', 'end' => ''));
echo "<a class=\"multi0\" href=\"".$path."\">".$view['title']."</a><br>\n";
foreach ($this->config->views as $key => $view) {
$path = pnp::addToUri(array('view' => $key, 'start' => '', 'end' => ''));
echo "<a class=\"multi0\" href=\"" . $path . "\">" . $view['title'] . "</a><br>\n";
}
echo "</div>\n";
echo "</div><p>\n";
?>