source: trunk/search_rules.php @ 25005

Last change on this file since 25005 was 25005, checked in by mistic100, 11 years ago

feature 2978: remove useless sprintf in the core

  • Property svn:eol-style set to LF
File size: 7.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2013 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// +-----------------------------------------------------------------------+
23
24/**
25 * returns language value 'included' or 'excluded' depending on boolean
26 * value. This function is useful only to make duplicate code shorter
27 *
28 * @param bool is_included
29 * @return string
30 */
31function inc_exc_str($is_included)
32{
33  return $is_included ? l10n('included') : l10n('excluded');
34}
35
36// +-----------------------------------------------------------------------+
37// |                           initialization                              |
38// +-----------------------------------------------------------------------+
39
40define('PHPWG_ROOT_PATH','./');
41include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
42check_status(ACCESS_FREE);
43include_once( PHPWG_ROOT_PATH.'include/functions_search.inc.php' );
44
45$page['body_id'] = 'thePopuphelpPage';
46$title = l10n('Piwigo Help');
47$page['page_banner'] = '';
48$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
49include(PHPWG_ROOT_PATH.'include/page_header.php');
50
51$template->set_filenames(array('search_rules' => 'search_rules.tpl'));
52
53// +-----------------------------------------------------------------------+
54// |                        Textual rules creation                         |
55// +-----------------------------------------------------------------------+
56
57// Rules are stored in database, serialized in an array. This array must be
58// transformed into a list of textual rules.
59
60$search = get_search_array($_GET['search_id']);
61
62if (isset($search['q']))
63{
64  $template->append( 'search_words', $search['q'] );
65}
66else
67{
68  $template->assign(
69    array(
70      'INTRODUCTION'
71        => 'OR' == $search['mode']
72        ? l10n('At least one listed rule must be satisfied.')
73        : l10n('Each listed rule must be satisfied.'),
74      )
75    );
76}
77
78if (isset($search['fields']['allwords']))
79{
80  $template->append(
81      'search_words',
82      l10n(
83        'searched words : %s',
84        join(', ', $search['fields']['allwords']['words'])
85        )
86      );
87}
88
89if (isset($search['fields']['tags']))
90{
91  $template->assign('SEARCH_TAGS_MODE', $search['fields']['tags']['mode']);
92 
93  $query = '
94SELECT name
95  FROM '.TAGS_TABLE.'
96  WHERE id IN ('.implode(',', $search['fields']['tags']['words']).')
97;';
98  $template->assign(
99      'search_tags',
100      array_from_query($query, 'name')
101    );
102}
103
104if (isset($search['fields']['author']))
105{
106  $template->append(
107      'search_words',
108      l10n(
109        'author(s) : %s',
110        join(', ', $search['fields']['author']['words'])
111        )
112      );
113}
114
115if (isset($search['fields']['cat']))
116{
117  if ($search['fields']['cat']['sub_inc'])
118  {
119    // searching all the categories id of sub-categories
120    $cat_ids = get_subcat_ids($search['fields']['cat']['words']);
121  }
122  else
123  {
124    $cat_ids = $search['fields']['cat']['words'];
125  }
126
127  $query = '
128SELECT id, uppercats, global_rank
129  FROM '.CATEGORIES_TABLE.'
130  WHERE id IN ('.
131    implode(',', $cat_ids).
132    ')
133;';
134  $result = pwg_query($query);
135
136  $categories = array();
137  if (!empty($result))
138  {
139    while ($row = pwg_db_fetch_assoc($result))
140    {
141      array_push($categories, $row);
142    }
143  }
144  usort($categories, 'global_rank_compare');
145
146  foreach ($categories as $category)
147  {
148    $template->append(
149      'search_categories',
150      get_cat_display_name_cache(
151          $category['uppercats'],
152          null,                      // no url on category names
153          false                    // no blank replacement
154          )
155      );
156  }
157}
158
159foreach (array('date_available', 'date_creation') as $datefield)
160{
161  if ('date_available' == $datefield)
162  {
163    $lang_items = array(
164      'date'   => l10n('posted on %s'),
165      'period' => l10n('posted between %s (%s) and %s (%s)'),
166      'after'  => l10n('posted after %s (%s)'),
167      'before' => l10n('posted before %s (%s)'),
168      );
169  }
170  elseif ('date_creation' == $datefield)
171  {
172    $lang_items = array(
173      'date'   => l10n('created on %s'),
174      'period' => l10n('created between %s (%s) and %s (%s)'),
175      'after'  => l10n('created after %s (%s)'),
176      'before' => l10n('created before %s (%s)'),
177      );
178  }
179
180  $keys = array(
181    'date'   => $datefield,
182    'after'  => $datefield.'-after',
183    'before' => $datefield.'-before',
184    );
185
186  if (isset($search['fields'][ $keys['date'] ]))
187  {
188    $template->assign(
189      strtoupper($datefield),
190      sprintf(
191          $lang_items['date'],
192          format_date($search['fields'][ $keys['date'] ])
193          )
194      );
195  }
196  elseif (isset($search['fields'][ $keys['before'] ])
197          and isset($search['fields'][ $keys['after'] ]))
198  {
199    $template->assign(
200      strtoupper($datefield),
201      sprintf(
202          $lang_items['period'],
203
204          format_date($search['fields'][ $keys['after'] ]['date']),
205          inc_exc_str($search['fields'][ $keys['after'] ]['inc']),
206
207          format_date($search['fields'][ $keys['before'] ]['date']),
208          inc_exc_str($search['fields'][ $keys['before'] ]['inc'])
209          )
210      );
211  }
212  elseif (isset($search['fields'][ $keys['before'] ]))
213  {
214    $template->assign(
215      strtoupper($datefield),
216      sprintf(
217          $lang_items['before'],
218
219          format_date($search['fields'][ $keys['before'] ]['date']),
220          inc_exc_str($search['fields'][ $keys['before'] ]['inc'])
221          )
222      );
223  }
224  elseif (isset($search['fields'][ $keys['after'] ]))
225  {
226    $template->assign(
227      strtoupper($datefield),
228      sprintf(
229          $lang_items['after'],
230
231          format_date($search['fields'][ $keys['after'] ]['date']),
232          inc_exc_str($search['fields'][ $keys['after'] ]['inc'])
233          )
234      );
235  }
236}
237
238// +-----------------------------------------------------------------------+
239// |                           html code display                           |
240// +-----------------------------------------------------------------------+
241
242$template->pparse('search_rules');
243include(PHPWG_ROOT_PATH.'include/page_tail.php');
244?>
Note: See TracBrowser for help on using the repository browser.