source: trunk/include/functions_html.inc.php @ 831

Last change on this file since 831 was 831, checked in by plg, 19 years ago
  • bug 133 fixed : "Nb of images incorectly rendered in "tool tip" near category in category menu". Correction reported (and improved) from branch 1.4
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2005-08-18 21:31:21 +0000 (Thu, 18 Aug 2005) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 831 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28function get_icon( $date )
29{
30  global $user, $conf, $lang;
31
32  if (!preg_match('/\d{4}-\d{2}-\d{2}/', $date))
33  {
34    return '';
35  }
36
37  list( $year,$month,$day ) = explode( '-', $date );
38  $unixtime = mktime( 0, 0, 0, $month, $day, $year );
39 
40  $diff = time() - $unixtime;
41  $day_in_seconds = 24*60*60;
42  $output = '';
43  $title = $lang['recent_image'].'&nbsp;';
44  if ( $diff < $user['recent_period'] * $day_in_seconds )
45  {
46    $icon_url = './template/'.$user['template'].'/theme/';
47    $icon_url.= 'recent.gif';
48    $title .= $user['recent_period'];
49    $title .=  '&nbsp;'.$lang['days'];
50    $size = getimagesize( $icon_url );
51    $output = '<img title="'.$title.'" src="'.$icon_url.'" style="border:0;';
52    $output.= 'height:'.$size[1].'px;width:'.$size[0].'px" alt="" />';
53  }
54  return $output;
55}
56
57function create_navigation_bar($url, $nb_element, $start,
58                               $nb_element_page, $link_class)
59{
60  global $lang, $conf;
61
62  $pages_around = $conf['paginate_pages_around'];
63 
64  $navbar = '';
65 
66  // current page detection
67  if (!isset($start)
68      or !is_numeric($start)
69      or (is_numeric($start) and $start < 0))
70  {
71    $start = 0;
72  }
73 
74  // navigation bar useful only if more than one page to display !
75  if ($nb_element > $nb_element_page)
76  {
77    // current page and last page
78    $cur_page = ceil($start / $nb_element_page) + 1;
79    $maximum = ceil($nb_element / $nb_element_page);
80
81    // link to first page ?
82    if ($cur_page != 1)
83    {
84      $navbar.= '<a href="';
85      $navbar.= add_session_id($url.'&amp;start=0');
86      $navbar.= '" class="'.$link_class.'">'.$lang['first_page'];
87      $navbar.= '</a>';
88    }
89    else
90    {
91      $navbar.= $lang['first_page'];
92    }
93    $navbar.= ' | ';
94    // link on previous page ?
95    if ( $start != 0 )
96    {
97      $previous = $start - $nb_element_page;
98      $navbar.= '<a href="';
99      $navbar.= add_session_id( $url.'&amp;start='.$previous );
100      $navbar.= '" class="'.$link_class.'">'.$lang['previous_page'];
101      $navbar.= '</a>';
102    }
103    else
104    {
105      $navbar.= $lang['previous_page'];
106    }
107    $navbar.= ' | ';
108
109    if ($cur_page > $pages_around + 1)
110    {
111      $navbar.= '&nbsp;<a href="';
112      $navbar.= add_session_id($url.'&amp;start=0');
113      $navbar.= '" class="'.$link_class.'">1</a>';
114      if ($cur_page > $pages_around + 2)
115      {
116        $navbar.= ' ...';
117      }
118    }
119   
120    // inspired from punbb source code
121    for ($i = $cur_page - $pages_around, $stop = $cur_page + $pages_around + 1;
122         $i < $stop;
123         $i++)
124    {
125      if ($i < 1 or $i > $maximum)
126      {
127        continue;
128      }
129      else if ($i != $cur_page)
130      {
131        $temp_start = ($i - 1) * $nb_element_page;
132        $navbar.= '&nbsp;<a href="';
133        $navbar.= add_session_id($url.'&amp;start='.$temp_start);
134        $navbar.= '" class="'.$link_class.'">'.$i.'</a>';
135      }
136      else
137      {
138        $navbar.= '&nbsp;<span class="pageNumberSelected">';
139        $navbar.= $i.'</span>';
140      }
141    }
142
143    if ($cur_page < ($maximum - $pages_around))
144    {
145      $temp_start = ($maximum - 1) * $nb_element_page;
146      if ($cur_page < ($maximum - $pages_around - 1))
147      {
148        $navbar.= ' ...';
149      }
150      $navbar.= ' <a href="';
151      $navbar.= add_session_id($url.'&amp;start='.$temp_start);
152      $navbar.= '" class="'.$link_class.'">'.$maximum.'</a>';
153    }
154   
155    $navbar.= ' | ';
156    // link on next page ?
157    if ( $nb_element > $nb_element_page
158         && $start + $nb_element_page < $nb_element )
159    {
160      $next = $start + $nb_element_page;
161      $navbar.= '<a href="';
162      $navbar.= add_session_id( $url.'&amp;start='.$next );
163      $navbar.= '" class="'.$link_class.'">'.$lang['next_page'].'</a>';
164    }
165    else
166    {
167      $navbar.= $lang['next_page'];
168    }
169   
170    $navbar.= ' | ';
171    // link to last page ?
172    if ($cur_page != $maximum)
173    {
174      $temp_start = ($maximum - 1) * $nb_element_page;
175      $navbar.= '<a href="';
176      $navbar.= add_session_id($url.'&amp;start='.$temp_start);
177      $navbar.= '" class="'.$link_class.'">'.$lang['last_page'];
178      $navbar.= '</a>';
179    }
180    else
181    {
182      $navbar.= $lang['last_page'];
183    }
184  }
185  return $navbar;
186}
187
188//
189// Pick a language, any language ...
190//
191function language_select($default, $select_name = "language")
192{
193  $available_lang = get_languages();
194
195  $lang_select = '<select name="' . $select_name . '">';
196  foreach ($available_lang as $code => $displayname)
197  {
198    $selected = ( strtolower($default) == strtolower($code) ) ? ' selected="selected"' : '';
199    $lang_select .= '<option value="' . $code . '"' . $selected . '>' . ucwords($displayname) . '</option>';
200  }
201  $lang_select .= '</select>';
202
203  return $lang_select;
204}
205
206//
207// Pick a template/theme combo,
208//
209function style_select($default_style, $select_name = "style")
210{
211  $templates = get_templates();
212
213  $style_selected = '<select name="' . $select_name . '" >';
214  foreach ($templates as $template)
215  {
216    $selected = ( $template == $default_style ) ? ' selected="selected"' : '';
217    $style_selected.= '<option value="'.$template.'"'.$selected.'>';
218    $style_selected.= $template.'</option>';
219  }
220  $style_selected .= '</select>';
221  return $style_selected;
222}
223
224/**
225 * returns the list of categories as a HTML string
226 *
227 * categories string returned contains categories as given in the input
228 * array $cat_informations. $cat_informations array must be an association
229 * of {category_id => category_name}. If url input parameter is empty,
230 * returns only the categories name without links.
231 *
232 * @param array cat_informations
233 * @param string url
234 * @param boolean replace_space
235 * @return string
236 */
237function get_cat_display_name($cat_informations,
238                              $url = 'category.php?cat=',
239                              $replace_space = true)
240{
241  global $conf;
242 
243  $output = '';
244  $is_first = true;
245  foreach ($cat_informations as $id => $name)
246  {
247    if ($is_first)
248    {
249      $is_first = false;
250    }
251    else
252    {
253      $output.= $conf['level_separator'];
254    }
255
256    if ($url == '')
257    {
258      $output.= $name;
259    }
260    else
261    {
262      $output.= '<a class=""';
263      $output.= ' href="'.add_session_id(PHPWG_ROOT_PATH.$url.$id).'">';
264      $output.= $name.'</a>';
265    }
266  }
267  if ($replace_space)
268  {
269    return replace_space($output);
270  }
271  else
272  {
273    return $output;
274  }
275}
276
277/**
278 * returns the list of categories as a HTML string, with cache of names
279 *
280 * categories string returned contains categories as given in the input
281 * array $cat_informations. $uppercats is the list of category ids to
282 * display in the right order. If url input parameter is empty, returns only
283 * the categories name without links.
284 *
285 * @param string uppercats
286 * @param string url
287 * @param boolean replace_space
288 * @return string
289 */
290function get_cat_display_name_cache($uppercats,
291                                    $url = 'category.php?cat=',
292                                    $replace_space = true)
293{
294  global $cat_names, $conf;
295
296  if (!isset($cat_names))
297  {
298    $query = '
299SELECT id,name
300  FROM '.CATEGORIES_TABLE.'
301;';
302    $result = pwg_query($query);
303    while ($row = mysql_fetch_array($result))
304    {
305      $cat_names[$row['id']] = $row['name'];
306    }
307  }
308 
309  $output = '';
310  $is_first = true;
311  foreach (explode(',', $uppercats) as $category_id)
312  {
313    $name = $cat_names[$category_id];
314   
315    if ($is_first)
316    {
317      $is_first = false;
318    }
319    else
320    {
321      $output.= $conf['level_separator'];
322    }
323
324    if ($url == '')
325    {
326      $output.= $name;
327    }
328    else
329    {
330      $output.= '
331<a class=""
332   href="'.add_session_id(PHPWG_ROOT_PATH.$url.$category_id).'">'.$name.'</a>';
333    }
334  }
335  if ($replace_space)
336  {
337    return replace_space($output);
338  }
339  else
340  {
341    return $output;
342  }
343}
344
345/**
346 * returns the HTML code for a category item in the menu (for category.php)
347 *
348 * HTML code generated uses logical list tags ul and each category is an
349 * item li. The paramter given is the category informations as an array,
350 * used keys are : id, name, nb_images, date_last
351 *
352 * @param array categories
353 * @return string
354 */
355function get_html_menu_category($categories)
356{
357  global $page, $lang;
358
359  $ref_level = 0;
360  $menu = '
361             <ul class="menu">';
362 
363  foreach ($categories as $category)
364  {
365    $level = substr_count($category['global_rank'], '.');
366    if ($level > $ref_level)
367    {
368      $menu.= '
369             <ul class="menu">';
370    }
371    else if ($level < $ref_level)
372    {
373      // we may have to close more than one level at the same time...
374      $menu.= str_repeat("\n</ul>",($ref_level-$level));
375    }
376    $ref_level = $level;
377   
378    $menu.= '
379
380           <li>';
381 
382    $url = add_session_id(PHPWG_ROOT_PATH.'category.php?cat='.$category['id']);
383
384    $class = '';
385    if (isset($page['cat'])
386        and is_numeric($page['cat'])
387        and $category['id'] == $page['cat'])
388    {
389      $class = 'menuCategorySelected';
390    }
391    else
392    {
393      $class = 'menuCategoryNotSelected';
394    }
395
396    $menu.= '
397             <a href="'.$url.'" class="'.$class.'">'.$category['name'].'</a>';
398
399    if ($category['nb_images'] > 0)
400    {
401      $menu.= '
402             <span class="menuInfoCat"';
403      $menu.= ' title="'.$category['nb_images'];
404      $menu.= ' '.$lang['images_available'].'">';
405      $menu.= '['.$category['nb_images'].']';
406      $menu.= '</span>';
407      $menu.= get_icon($category['date_last']);
408    }
409
410    $menu.= '
411           </li>';
412  }
413 
414  $menu.= '
415             </ul>';
416 
417  return $menu;
418}
419
420/**
421 * returns HTMLized comment contents retrieved from database
422 *
423 * newlines becomes br tags, _word_ becomes underline, /word/ becomes
424 * italic, *word* becomes bolded
425 *
426 * @param string content
427 * @return string
428 */
429function parse_comment_content($content)
430{
431  $content = nl2br($content);
432 
433  // replace _word_ by an underlined word
434  $pattern = '/_([^\s]*)_/';
435  $replacement = '<span style="text-decoration:underline;">\1</span>';
436  $content = preg_replace($pattern, $replacement, $content);
437 
438  // replace *word* by a bolded word
439  $pattern = '/\*([^\s]*)\*/';
440  $replacement = '<span style="font-weight:bold;">\1</span>';
441  $content = preg_replace($pattern, $replacement, $content);
442 
443  // replace /word/ by an italic word
444  $pattern = '/\/([^\s]*)\//';
445  $replacement = '<span style="font-style:italic;">\1</span>';
446  $content = preg_replace($pattern, $replacement, $content);
447
448  return $content;
449}
450
451function get_cat_display_name_from_id($cat_id,
452                                      $url = 'category.php?cat=',
453                                      $replace_space = true)
454{
455  $cat_info = get_cat_info($cat_id);
456  return get_cat_display_name($cat_info['name'], $url, $replace_space);
457}
458?>
Note: See TracBrowser for help on using the repository browser.