source: trunk/include/calendar_base.class.php @ 2716

Last change on this file since 2716 was 2469, checked in by grum, 16 years ago

updating files for the Menu class (test_menu)

+ fixes "Links" translation bug

updating files for the AMenuManager plugin

+ enhance links template

updating common classes grum_plugins_classes-2
(needed for the AMenuManager plugin)

+ clearing the code

updating the calendar_base.class.php
the 'get_nav_bar_from_items' method was returning a hard coded html string
now replaced by a template file (calendar_nav.tpl)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 10.1 KB
RevLine 
[1053]1<?php
2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008      Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
[1053]23
24/**
25 * Base class for monthly and weekly calendar styles
26 */
27class CalendarBase
28{
29  // db column on which this calendar works
30  var $date_field;
31  // used for queries (INNER JOIN or normal)
32  var $inner_sql;
[1059]33  //
34  var $calendar_levels;
[1053]35
36  /**
37   * Initialize the calendar
38   * @param string inner_sql used for queries (INNER JOIN or normal)
39   */
[1086]40  function initialize($inner_sql)
[1053]41  {
[1086]42    global $page;
[1090]43    if ($page['chronology_field']=='posted')
[1086]44    {
45      $this->date_field = 'date_available';
46    }
47    else
48    {
49      $this->date_field = 'date_creation';
50    }
[1053]51    $this->inner_sql = $inner_sql;
52  }
53
[1059]54  function get_display_name()
55  {
[1086]56    global $conf, $page;
[1059]57    $res = '';
58
[1086]59    for ($i=0; $i<count($page['chronology_date']); $i++)
[1059]60    {
61      $res .= $conf['level_separator'];
[1086]62      if ( isset($page['chronology_date'][$i+1]) )
[1069]63      {
[1086]64        $chronology_date = array_slice($page['chronology_date'],0, $i+1);
65        $url = duplicate_index_url(
66            array( 'chronology_date'=>$chronology_date ),
67            array( 'start' )
68            );
[1059]69        $res .=
70          '<a href="'.$url.'">'
[1086]71          .$this->get_date_component_label($i, $page['chronology_date'][$i])
[1059]72          .'</a>';
73      }
74      else
75      {
76        $res .=
77          '<span class="calInHere">'
[1086]78          .$this->get_date_component_label($i, $page['chronology_date'][$i])
[1059]79          .'</span>';
80      }
81    }
82    return $res;
83  }
84
[1053]85//--------------------------------------------------------- private members ---
86  /**
[1057]87   * Returns a display name for a date component optionally using labels
88  */
[1059]89  function get_date_component_label($level, $date_component)
[1057]90  {
91    $label = $date_component;
[1059]92    if (isset($this->calendar_levels[$level]['labels'][$date_component]))
[1057]93    {
[1059]94      $label = $this->calendar_levels[$level]['labels'][$date_component];
[1057]95    }
[1069]96    elseif ('any' === $date_component )
[1057]97    {
98      $label = l10n('calendar_any');
99    }
100    return $label;
101  }
[1059]102
[1057]103  /**
[1062]104   * Gets a nice display name for a date to be shown in previos/next links.
105   */
106  function get_date_nice_name($date)
107  {
108    $date_components = explode('-', $date);
109    $res = '';
110    for ($i=count($date_components)-1; $i>=0; $i--)
111    {
[1069]112      if ('any' !== $date_components[$i])
[1062]113      {
[1069]114        $label = $this->get_date_component_label($i, $date_components[$i] );
115        if ( $res!='' )
[1062]116        {
[1069]117          $res .= ' ';
[1062]118        }
[1069]119        $res .= $label;
[1062]120      }
121    }
122    return $res;
123  }
124
125  /**
[1053]126   * Creates a calendar navigation bar.
127   *
[1086]128   * @param array date_components
[1053]129   * @param array items - hash of items to put in the bar (e.g. 2005,2006)
130   * @param string class_prefix - html class attribute prefix for span elements
[1059]131   * @param bool show_any - adds any link to the end of the bar
132   * @param bool show_empty - shows all labels even those without items
[1053]133   * @param array labels - optional labels for items (e.g. Jan,Feb,...)
134   * @return string the navigation bar
135   */
[2101]136  function get_nav_bar_from_items($date_components, $items,
[1059]137                                  $class_prefix, $show_any,
138                                  $show_empty=false, $labels=null)
[1053]139  {
[2469]140    global $conf, $page, $template;
[1059]141
[2469]142    $nav_bar_datas=array();
[1059]143
144    if ($conf['calendar_show_empty'] and $show_empty and !empty($labels) )
145    {
146      foreach ($labels as $item => $label)
147      {
148        if ( ! isset($items[$item]) )
149        {
150          $items[$item] = -1;
151        }
152      }
153      ksort($items);
154    }
155
[1053]156    foreach ($items as $item => $nb_images)
157    {
158      $label = $item;
159      if (isset($labels[$item]))
160      {
161        $label = $labels[$item];
162      }
[2101]163      if ($nb_images==-1)
[1053]164      {
[2469]165        $tmp_datas=array(
166          'classname' => $class_prefix."Empty",
167          'label'=> $label
168        );
[1059]169      }
[1053]170      else
171      {
[1086]172        $url = duplicate_index_url(
[1107]173          array('chronology_date'=>array_merge($date_components,array($item))),
[1086]174          array( 'start' )
175            );
[2469]176        $tmp_datas=array(
177          'classname' => $class_prefix,
178          'label'=> $label,
179          'url' => $url
180        );
[1053]181      }
182      if ($nb_images > 0)
183      {
[2469]184        $tmp_datas['nb_images']=$nb_images;
[1053]185      }
[2469]186      $nav_bar_datas[]=$tmp_datas;
187     
[1053]188    }
[1059]189
[1163]190    if ($conf['calendar_show_any'] and $show_any and count($items)>1 and
191          count($date_components)<count($this->calendar_levels)-1 )
[1053]192    {
[2101]193      $url = duplicate_index_url(
194        array('chronology_date'=>array_merge($date_components,array('any'))),
195        array( 'start' )
196          );
[2469]197      $nav_bar_datas[]=array(
198        'label' => l10n('calendar_any'),
199        'classname' => $class_prefix,
200        'url' => $url
201      );
[1053]202    }
[2469]203
204    $template->set_filenames( array( 'nav_bar' => 'calendar_navbar.tpl',));
205    $template->assign('datas', $nav_bar_datas);
206    return($template->parse('nav_bar', true));
[1053]207  }
208
209  /**
210   * Creates a calendar navigation bar for a given level.
211   *
[1059]212   * @param int level - the level (0-year,1-month/week,2-day)
[1053]213   * @return void
214   */
[1059]215  function build_nav_bar($level, $labels=null)
[1053]216  {
[1086]217    global $template, $conf, $page;
[1059]218
[1053]219    $query = '
[1059]220SELECT DISTINCT('.$this->calendar_levels[$level]['sql']
[1053]221      .') as period';
222    $query.= $this->inner_sql;
[1057]223    $query.= $this->get_date_where($level);
[1053]224    $query.= '
225  GROUP BY period
226;';
227
228    $level_items = array();
229    $result = pwg_query($query);
230    while ($row = mysql_fetch_array($result))
231    {
232      $level_items[$row['period']] = 0;
233    }
234
[1062]235    if ( count($level_items)==1 and
[1086]236         count($page['chronology_date'])<count($this->calendar_levels)-1)
[1059]237    {
[1086]238      if ( ! isset($page['chronology_date'][$level]) )
[1059]239      {
240        list($key) = array_keys($level_items);
[1086]241        $page['chronology_date'][$level] = (int)$key;
[1059]242
[1086]243        if ( $level<count($page['chronology_date']) and
[1062]244             $level!=count($this->calendar_levels)-1 )
245        {
246          return;
247        }
[1059]248      }
249    }
250
[1092]251    $dates = $page['chronology_date'];
252    while ($level<count($dates))
253    {
254      array_pop($dates);
255    }
256
[1053]257    $nav_bar = $this->get_nav_bar_from_items(
[1092]258      $dates,
[1053]259      $level_items,
[1059]260      'calItem',
[1053]261      true,
[1059]262      true,
263      isset($labels) ? $labels : $this->calendar_levels[$level]['labels']
[1053]264      );
265
[2231]266    $template->append(
267      'chronology_navigation_bars',
[1053]268      array(
[2231]269        'CONTENT' => $nav_bar,
[1053]270        )
271      );
272  }
[1062]273
274  /**
275   * Assigns the next/previous link to the template with regards to
276   * the currently choosen date.
277   */
278  function build_next_prev()
279  {
[1086]280    global $template, $page;
[1062]281    $prev = $next =null;
[1086]282    if ( empty($page['chronology_date']) )
[1062]283      return;
284    $query = 'SELECT CONCAT_WS("-"';
[1086]285    for ($i=0; $i<count($page['chronology_date']); $i++)
[1062]286    {
[1163]287      if ( 'any' === $page['chronology_date'][$i] )
[1062]288      {
[1069]289        $query .= ','.'"any"';
[1062]290      }
291      else
292      {
[1069]293        $query .= ','.$this->calendar_levels[$i]['sql'];
[1062]294      }
295    }
[1086]296    $current = implode('-', $page['chronology_date'] );
[1062]297
298    $query.=') as period' . $this->inner_sql .'
299AND ' . $this->date_field . ' IS NOT NULL
300GROUP BY period';
[1069]301
[1062]302    $upper_items = array_from_query( $query, 'period');
[1069]303
[1062]304    usort($upper_items, 'version_compare');
305    $upper_items_rank = array_flip($upper_items);
[1069]306    if ( !isset($upper_items_rank[$current]) )
307    {
308      array_push($upper_items, $current);// just in case (external link)
309      usort($upper_items, 'version_compare');
310      $upper_items_rank = array_flip($upper_items);
311    }
[1062]312    $current_rank = $upper_items_rank[$current];
[1069]313
[2231]314    $tpl_var = array();
315   
[1062]316    if ( $current_rank>0 )
317    { // has previous
318      $prev = $upper_items[$current_rank-1];
[1086]319      $chronology_date = explode('-', $prev);
[2231]320      $tpl_var['previous'] =
[1062]321        array(
322          'LABEL' => $this->get_date_nice_name($prev),
[1086]323          'URL' => duplicate_index_url(
324                array('chronology_date'=>$chronology_date), array('start')
325                )
[1062]326        );
327    }
[2231]328   
[1062]329    if ( $current_rank < count($upper_items)-1 )
[1086]330    { // has next
[1062]331      $next = $upper_items[$current_rank+1];
[1086]332      $chronology_date = explode('-', $next);
[2231]333      $tpl_var['next'] =
[1062]334        array(
335          'LABEL' => $this->get_date_nice_name($next),
[1086]336          'URL' => duplicate_index_url(
337                array('chronology_date'=>$chronology_date), array('start')
338                )
[1062]339        );
340    }
[2231]341   
342    if ( !empty($tpl_var) )
343    {
344      $existing = & $template->get_template_vars('chronology_navigation_bars');
345      if ( !empty($existing) )
346      {
347        $existing[ sizeof($existing)-1 ] =
348          array_merge( $existing[ sizeof($existing)-1 ], $tpl_var);
349      }
350      else
351      {
352        $template->append( 'chronology_navigation_bars', $tpl_var );
353      }
354    }
[1062]355  }
[1053]356}
[1903]357?>
Note: See TracBrowser for help on using the repository browser.