date_field = 'date_available'; } else { $this->date_field = 'date_creation'; } $this->inner_sql = $inner_sql; $this->has_nav_bar = false; } function get_display_name() { global $conf, $page; $res = ''; for ($i=0; $i$chronology_date ), array( 'start' ) ); $res .= '' .$this->get_date_component_label($i, $page['chronology_date'][$i]) .''; } else { $res .= '' .$this->get_date_component_label($i, $page['chronology_date'][$i]) .''; } } return $res; } //--------------------------------------------------------- private members --- /** * Returns a display name for a date component optionally using labels */ function get_date_component_label($level, $date_component) { $label = $date_component; if (isset($this->calendar_levels[$level]['labels'][$date_component])) { $label = $this->calendar_levels[$level]['labels'][$date_component]; } elseif ('any' === $date_component ) { $label = l10n('calendar_any'); } return $label; } /** * 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 ('any' !== $date_components[$i]) { $label = $this->get_date_component_label($i, $date_components[$i] ); if ( $res!='' ) { $res .= ' '; } $res .= $label; } } return $res; } /** * Creates a calendar navigation bar. * * @param array date_components * @param array items - hash of items to put in the bar (e.g. 2005,2006) * @param array selected_item - item currently selected (e.g. 2005) * @param string class_prefix - html class attribute prefix for span elements * @param bool show_any - adds any link to the end of the bar * @param bool show_empty - shows all labels even those without items * @param array labels - optional labels for items (e.g. Jan,Feb,...) * @return string the navigation bar */ function get_nav_bar_from_items($date_components, $items, $selected_item, $class_prefix, $show_any, $show_empty=false, $labels=null) { global $conf, $page; $nav_bar = ''; if ($conf['calendar_show_empty'] and $show_empty and !empty($labels) ) { foreach ($labels as $item => $label) { if ( ! isset($items[$item]) ) { $items[$item] = -1; } } ksort($items); } foreach ($items as $item => $nb_images) { $label = $item; if (isset($labels[$item])) { $label = $labels[$item]; } if (isset($selected_item) and $item == $selected_item) { $nav_bar .= ''; $nav_bar .= $label; } elseif ($nb_images==-1) { $nav_bar .= ''; $nav_bar .= $label; } else { $nav_bar .= ''; $url = duplicate_index_url( array('chronology_date'=>array_merge($date_components,array($item))), array( 'start' ) ); $nav_bar .= ''; $nav_bar .= $label; $nav_bar .= ''; } if ($nb_images > 0) { $nav_bar .= '('.$nb_images.')'; } $nav_bar.= ''; } if ($conf['calendar_show_any'] and $show_any and count($items)>1 and count($date_components)calendar_levels)-1 ) { $label = l10n('calendar_any'); if (isset($selected_item) and 'any' === $selected_item) { $nav_bar .= ''; $nav_bar .= $label; } else { $nav_bar .= ''; $url = duplicate_index_url( array('chronology_date'=>array_merge($date_components,array('any'))), array( 'start' ) ); $nav_bar .= ''; $nav_bar .= $label; $nav_bar .= ''; } $nav_bar.= ''; } return $nav_bar; } /** * Creates a calendar navigation bar for a given level. * * @param int level - the level (0-year,1-month/week,2-day) * @return void */ function build_nav_bar($level, $labels=null) { global $template, $conf, $page; $query = ' SELECT DISTINCT('.$this->calendar_levels[$level]['sql'] .') as period'; $query.= $this->inner_sql; $query.= $this->get_date_where($level); $query.= ' GROUP BY period ;'; $level_items = array(); $result = pwg_query($query); while ($row = mysql_fetch_array($result)) { $level_items[$row['period']] = 0; } if ( count($level_items)==1 and count($page['chronology_date'])calendar_levels)-1) { if ( ! isset($page['chronology_date'][$level]) ) { list($key) = array_keys($level_items); $page['chronology_date'][$level] = (int)$key; if ( $levelcalendar_levels)-1 ) { return; } } } $dates = $page['chronology_date']; while ($levelget_nav_bar_from_items( $dates, $level_items, null, 'calItem', true, true, isset($labels) ? $labels : $this->calendar_levels[$level]['labels'] ); $template->assign_block_vars( 'calendar.navbar', array( '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, $page; $prev = $next =null; if ( empty($page['chronology_date']) ) return; $query = 'SELECT CONCAT_WS("-"'; for ($i=0; $icalendar_levels[$i]['sql']; } } $current = implode('-', $page['chronology_date'] ); $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'); $upper_items_rank = array_flip($upper_items); if ( !isset($upper_items_rank[$current]) ) { array_push($upper_items, $current);// just in case (external link) usort($upper_items, 'version_compare'); $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]; $chronology_date = explode('-', $prev); $template->assign_block_vars( 'calendar.navbar.prev', array( 'LABEL' => $this->get_date_nice_name($prev), 'URL' => duplicate_index_url( array('chronology_date'=>$chronology_date), array('start') ) ) ); } if ( $current_rank < count($upper_items)-1 ) { // has next $next = $upper_items[$current_rank+1]; $chronology_date = explode('-', $next); $template->assign_block_vars( 'calendar.navbar.next', array( 'LABEL' => $this->get_date_nice_name($next), 'URL' => duplicate_index_url( array('chronology_date'=>$chronology_date), array('start') ) ) ); } } } ?>