| [ Index ] |
|
Code source de e107 0.7.8 |
1 <?php 2 /* 3 + ----------------------------------------------------------------------------+ 4 | e107 website system 5 | 6 | ©Steve Dunstan 2001-2002 7 | http://e107.org 8 | jalist@e107.org 9 | 10 | Released under the terms and conditions of the 11 | GNU General Public License (http://gnu.org). 12 | 13 | $Source: /cvsroot/e107/e107_0.7/e107_handlers/search/advanced_comment.php,v $ 14 | $Revision: 1.2 $ 15 | $Date: 2005/12/14 17:37:34 $ 16 | $Author: sweetas $ 17 +----------------------------------------------------------------------------+ 18 */ 19 20 if (!defined('e107_INIT')) { exit; } 21 22 $advanced['type']['type'] = 'dropdown'; 23 $advanced['type']['text'] = LAN_SEARCH_57.':'; 24 $advanced['type']['list'][] = array('id' => 'all', 'title' => LAN_SEARCH_58); 25 26 $advanced_caption['id'] = 'type'; 27 $advanced_caption['title']['all'] = LAN_SEARCH_59; 28 29 foreach ($search_prefs['comments_handlers'] as $h_key => $value) { 30 if (check_class($value['class'])) { 31 $path = ($value['dir'] == 'core') ? e_HANDLER.'search/comments_'.$h_key.'.php' : e_PLUGIN.$value['dir'].'/search/search_comments.php'; 32 require_once($path); 33 $advanced['type']['list'][] = array('id' => 's_'.$value['id'], 'title' => $comments_title); 34 $advanced_caption['title']['s_'.$value['id']] = LAN_SEARCH_60.' '.$comments_title; 35 } 36 } 37 38 $advanced['date']['type'] = 'date'; 39 $advanced['date']['text'] = LAN_SEARCH_50.':'; 40 41 $advanced['author']['type'] = 'author'; 42 $advanced['author']['text'] = LAN_SEARCH_61.':'; 43 44 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Sun Apr 1 01:23:32 2007 | par Balluche grâce à PHPXref 0.7 |