aboutsummaryrefslogtreecommitdiffstats
path: root/include/calendar_base.class.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-03-03 01:57:39 +0000
committerrvelices <rv-github@modusoptimus.com>2006-03-03 01:57:39 +0000
commit2a3d5012138715952add2f69e9b3253353ea419d (patch)
tree0edda816004ca51c4781bf12517f0c95ad422eae /include/calendar_base.class.php
parent8f33338fed3809c2b964cbe610658b143c96b6c9 (diff)
improvement: calendar navigation now uses at maximum one navigation bar
together with a next/previous date links improvement: calendar view styles now shown in DIV.titrePage (I still need to move padding from H2 to DIV.titrePage ...) fix: moved all calendar css colors from template to the theme git-svn-id: http://piwigo.org/svn/trunk@1062 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/calendar_base.class.php')
-rw-r--r--include/calendar_base.class.php117
1 files changed, 101 insertions, 16 deletions
diff --git a/include/calendar_base.class.php b/include/calendar_base.class.php
index 8f9ec4bb7..c71940830 100644
--- a/include/calendar_base.class.php
+++ b/include/calendar_base.class.php
@@ -40,6 +40,8 @@ class CalendarBase
//
var $calendar_levels;
+ var $has_nav_bar;
+
/**
* Initialize the calendar
* @param string date_field db column on which this calendar works
@@ -51,6 +53,7 @@ class CalendarBase
$this->date_field = $date_field;
$this->inner_sql = $inner_sql;
$this->date_components = $date_components;
+ $this->has_nav_bar = false;
}
function get_display_name()
@@ -101,6 +104,28 @@ class CalendarBase
}
/**
+ * Gets a nice display name for a date to be shown in previos/next links.
+ */
+ function get_date_nice_name($date)
+ {
+ $date_components = explode('-', $date);
+ $res = '';
+ for ($i=count($date_components)-1; $i>=0; $i--)
+ {
+ if ($date_components[$i]!='any')
+ {
+ $label = $date_components[$i];
+ if (isset($this->calendar_levels[$i]['labels'][$date_components[$i]]))
+ {
+ $label = $this->calendar_levels[$i]['labels'][$date_components[$i]];
+ }
+ $res .= $label.' ';
+ }
+ }
+ return $res;
+ }
+
+ /**
* Creates a calendar navigation bar.
*
* @param string url_base - links start with this root
@@ -211,21 +236,19 @@ SELECT DISTINCT('.$this->calendar_levels[$level]['sql']
$level_items[$row['period']] = 0;
}
- if ( count($level_items)==1 )
+ if ( count($level_items)==1 and
+ count($this->date_components)<count($this->calendar_levels)-1)
{
if ( ! isset($this->date_components[$level]) )
{
list($key) = array_keys($level_items);
$this->date_components[$level] = (int)$key;
- }
- }
- if ( $conf['calendar_multi_bar']==false )
- {
- if ( $level<count($this->date_components) and
- $level!=count($this->calendar_levels)-1 )
- {
- return;
+ if ( $level<count($this->date_components) and
+ $level!=count($this->calendar_levels)-1 )
+ {
+ return;
+ }
}
}
@@ -237,15 +260,10 @@ SELECT DISTINCT('.$this->calendar_levels[$level]['sql']
$url_base .= $this->date_components[$i].'-';
}
}
- $selected = null;
- if ( isset($this->date_components[$level]) )
- {
- $selected = $this->date_components[$level];
- }
$nav_bar = $this->get_nav_bar_from_items(
$url_base,
$level_items,
- $selected,
+ null,
'calItem',
true,
true,
@@ -255,9 +273,76 @@ SELECT DISTINCT('.$this->calendar_levels[$level]['sql']
$template->assign_block_vars(
'calendar.navbar',
array(
- 'BAR' => $nav_bar
+ 'BAR' => $nav_bar,
)
);
+ $this->has_nav_bar = true;
+ }
+
+ /**
+ * Assigns the next/previous link to the template with regards to
+ * the currently choosen date.
+ */
+ function build_next_prev()
+ {
+ global $template;
+ $prev = $next =null;
+ if ( empty($this->date_components) )
+ return;
+
+ $current = '';
+ $query = 'SELECT CONCAT_WS("-"';
+ for ($i=0; $i<count($this->date_components); $i++)
+ {
+ if ( $this->date_components[$i] != 'any' )
+ {
+ $query .= ','.$this->calendar_levels[$i]['sql'];
+ }
+ else
+ {
+ $query .= ','.'"any"';
+ }
+ $current .= '-' . $this->date_components[$i];
+ }
+ $current = substr($current, 1);
+
+ $query.=') as period' . $this->inner_sql .'
+AND ' . $this->date_field . ' IS NOT NULL
+GROUP BY period';
+ $upper_items = array_from_query( $query, 'period');
+ usort($upper_items, 'version_compare');
+ //echo ('<pre>'. var_export($upper_items, true) . '</pre>');
+ $upper_items_rank = array_flip($upper_items);
+ $current_rank = $upper_items_rank[$current];
+ if (!$this->has_nav_bar and
+ ($current_rank>0 or $current_rank < count($upper_items)-1 ) )
+ {
+ $template->assign_block_vars( 'calendar.navbar', array() );
+ }
+
+ if ( $current_rank>0 )
+ { // has previous
+ $prev = $upper_items[$current_rank-1];
+ $template->assign_block_vars(
+ 'calendar.navbar.prev',
+ array(
+ 'LABEL' => $this->get_date_nice_name($prev),
+ 'URL' => $this->url_base . $prev,
+ )
+ );
+ }
+ if ( $current_rank < count($upper_items)-1 )
+ {
+ // has next
+ $next = $upper_items[$current_rank+1];
+ $template->assign_block_vars(
+ 'calendar.navbar.next',
+ array(
+ 'LABEL' => $this->get_date_nice_name($next),
+ 'URL' => $this->url_base . $next,
+ )
+ );
+ }
}
}
?> \ No newline at end of file