[ Index ]

PHP Cross Reference of phpwcms V1.5.0 _r431 (28.01.12)

title

Body

[close]

/include/inc_tmpl/content/ -> cnt13.inc.php (source)

   1  <?php
   2  /*************************************************************************************
   3     Copyright notice
   4     
   5     (c) 2002-2012 Oliver Georgi <oliver@phpwcms.de> // All rights reserved.
   6   
   7     This script is part of PHPWCMS. The PHPWCMS web content management system is
   8     free software; you can redistribute it and/or modify it under the terms of
   9     the GNU General Public License as published by the Free Software Foundation;
  10     either version 2 of the License, or (at your option) any later version.
  11    
  12     The GNU General Public License can be found at http://www.gnu.org/copyleft/gpl.html
  13     A copy is found in the textfile GPL.txt and important notices to the license 
  14     from the author is found in LICENSE.txt distributed with these scripts.
  15    
  16     This script is distributed in the hope that it will be useful, but WITHOUT ANY 
  17     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  18     PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  19   
  20     This copyright notice MUST APPEAR in all copies of the script!
  21  *************************************************************************************/
  22  
  23  // ----------------------------------------------------------------
  24  // obligate check for phpwcms constants
  25  if (!defined('PHPWCMS_ROOT')) {
  26     die("You Cannot Access This Script Directly, Have a Nice Day.");
  27  }
  28  // ----------------------------------------------------------------
  29  
  30  //search form
  31  
  32  // necessary JavaScript libraries
  33  initMootools();
  34  initMootoolsAutocompleter();
  35  
  36  
  37  if(empty($content['search']["text_html"])) {
  38      $content['search']["text_html"] = 0;
  39  }
  40  
  41  $content['search']["search_news"]    = empty($content['search']["search_news"]) ? 0 : 1;
  42  
  43  if(!isset($content['search']["news_lang"])) {
  44      $content['search']["news_lang"] = array();
  45  }
  46  if(!isset($content['search']["news_category"])) {
  47      $content['search']["news_category"] = array();
  48  }
  49  if(!isset($content['search']["news_andor"])) {
  50      $content['search']["news_andor"] = 'OR';
  51  }
  52  if(empty($content['search']["news_url"])) {
  53      $content['search']["news_url"] = '';
  54  }
  55  if(empty($content["search"]["hide_summary"])) {
  56      $content["search"]["hide_summary"] = 0;
  57  }
  58  if(empty($content["search"]["highlight_result"])) {
  59      $content["search"]["highlight_result"] = 0;
  60  }
  61  if(empty($content["search"]["newwin"])) {
  62      $content["search"]["newwin"] = 0;
  63  }
  64  if(empty($content["search"]["no_filenames"])) {
  65      $content["search"]["no_filenames"] = 0;
  66  }
  67  if(empty($content['search']['type'])) {
  68      $content['search']['type'] = 'OR';
  69  }
  70  
  71  ?>
  72  <tr><td colspan="2" class="rowspacer0x7"><img src="img/leer.gif" alt="" width="1" height="1" /></td></tr>
  73  
  74  <tr>
  75      <td align="right" class="chatlist"><?php echo $BL['be_admin_struct_template']; ?>:&nbsp;</td>
  76      <td><select name="template" id="template" class="f11b">
  77  <?php
  78      
  79      echo '<option value="">'.$BL['be_admin_tmpl_default'].'</option>'.LF;
  80  
  81  // templates for search listing
  82  $tmpllist = get_tmpl_files(PHPWCMS_TEMPLATE.'inc_cntpart/search');
  83  if(is_array($tmpllist) && count($tmpllist)) {
  84      foreach($tmpllist as $val) {
  85          $selected_val = (isset($content["template"]) && $val == $content["template"]) ? ' selected="selected"' : '';
  86          $val = html_specialchars($val);
  87          echo '    <option value="' . $val . '"' . $selected_val . '>' . $val . '</option>' . LF;
  88      }
  89  }
  90  
  91  ?>                  
  92          </select></td>
  93  </tr>
  94  
  95  <tr><td colspan="2" class="rowspacer7x7"><img src="img/leer.gif" alt="" width="1" height="1" /></td></tr>
  96  
  97    <tr>
  98      <td align="right" class="chatlist" valign="top"><?php echo $BL['be_cnt_results'] ?>:&nbsp;</td>
  99      <td valign="top"><table border="0" cellpadding="0" cellspacing="0" summary="">
 100        <tr>
 101          <td><input name="csearch_result_per_page" type="text" id="csearch_result_per_page" class="f11b" style="width: 30px" value="<?php echo isset($content["search"]["result_per_page"]) ? $content["search"]["result_per_page"] : '' ?>" size="3" maxlength="5" /></td>
 102          <td class="v10">&nbsp;<?php echo $BL['be_cnt_results_per_page'] ?>&nbsp;&nbsp;&nbsp;&nbsp;</td>
 103          <td><input name="csearch_newwin" type="checkbox" id="csearch_newwin" value="1" <?php is_checked(1, $content["search"]["newwin"]) ?> /></td>
 104          <td class="v10"><label for="csearch_newwin"><?php echo $BL['be_cnt_opennewwin'] ?></label></td>
 105        </tr>
 106        <tr><td colspan="4"><img src="img/leer.gif" alt="" width="1" height="2" /></td>
 107        </tr>
 108        <tr>
 109            <td><input name="csearch_wordlimit" type="text" id="csearch_wordlimit" class="f11b" style="width: 30px" value="<?php echo isset($content["search"]["wordlimit"]) ? $content["search"]["wordlimit"] : '' ?>" size="3" maxlength="5" /></td>
 110            <td class="v10">&nbsp;<?php echo $BL['be_cnt_results_wordlimit'] ?>&nbsp;&nbsp;&nbsp;&nbsp;</td>  
 111            <td><input name="csearch_highlight" type="checkbox" id="csearch_highlight" value="1" <?php is_checked(1, $content["search"]["highlight_result"]) ?> /></td>
 112            <td class="v10"><label for="csearch_highlight"><?php echo $BL['be_cnt_search_highlight'] ?></label></td>
 113        </tr>
 114        <tr><td colspan="4"><img src="img/leer.gif" alt="" width="1" height="2" /></td>
 115        </tr>
 116        <tr>
 117            <td><input name="csearch_minchar" type="text" id="csearch_minchar" class="f11b" style="width: 30px" value="<?php echo  isset($content["search"]["minchar"]) ? $content["search"]["minchar"] : '3' ?>" size="3" maxlength="5" /></td>
 118            <td class="v10">&nbsp;<?php echo $BL['be_cnt_results_minchar'] ?>&nbsp;&nbsp;&nbsp;&nbsp;</td>
 119          <td><input name="csearch_hidesummary" type="checkbox" id="csearch_hidesummary" value="1" <?php is_checked(1, $content["search"]["hide_summary"]) ?> /></td>
 120            <td class="v10"><label for="csearch_hidesummary"><?php echo $BL['be_cnt_search_hidesummary'] ?></label></td>
 121        </tr>
 122      </table></td>
 123    </tr>
 124    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="8" /></td></tr>
 125    
 126  <tr>
 127      <td align="right" class="chatlist" valign="top"><?php echo $BL['be_cnt_search_startlevel'] ?>:&nbsp;</td>
 128      <td><select name="csearch_start_at[]" size="10" multiple="multiple" class="f11" id="csearch_start_at" style="width: 440px">
 129  <?php
 130                  if(!isset($content["search"]["start_at"]) || !is_array($content["search"]["start_at"])) $content["search"]["start_at"] = array();
 131                                  
 132                  echo '<option value="0"';
 133                  if(in_array(0, $content["search"]["start_at"])) echo ' selected';
 134                  echo '>'.$BL['be_admin_struct_index'].'</option>'.LF;
 135                  struct_select_list(0, 0, $content["search"]["start_at"]);
 136  ?>
 137      </select></td>
 138  </tr>
 139  
 140  <tr><td colspan="2" class="rowspacer7x7"><img src="img/leer.gif" alt="" width="1" height="1" /></td></tr>
 141  
 142  <tr>
 143      <td align="right" class="chatlist"><?php echo $BL['be_cnt_search_searchnot'] ?>:&nbsp;</td>
 144      <td><table border="0" cellpadding="1" cellspacing="0" summary="">
 145        <tr>
 146          <td><input name="csearch_nofilenames" type="checkbox" id="csearch_nofilenames" value="1" <?php is_checked(1, $content["search"]["no_filenames"]) ?> /></td>
 147            <td class="v10"><label for="csearch_nofilenames"><?php echo $BL['be_fprivedit_filename'] ?></label></td>
 148          
 149          <td class="width75">&nbsp;</td>
 150          
 151          <td align="right" class="chatlist"><?php echo $BL['be_cnt_search_default_type'] ?>:&nbsp;</td>
 152          <td><select name="csearch_type">
 153                  <option value="OR"<?php is_selected('OR', $content['search']['type']) ?>><?php echo $BL['be_fsearch_or'] ?></option>
 154                  <option value="AND"<?php is_selected('AND', $content['search']['type']) ?>><?php echo $BL['be_fsearch_and'] ?></option>
 155          </select></td>
 156          
 157        </tr>
 158      </table></td>
 159  </tr>
 160  
 161  <tr><td colspan="2" class="rowspacer7x7"><img src="img/leer.gif" alt="" width="1" height="1" /></td></tr>
 162  
 163  <tr>
 164      <td align="right" class="chatlist tdtop4"><?php echo $BL['be_module_search'] ?>:&nbsp;</td>
 165      <td valign="top">
 166          <table border="0" cellpadding="1" cellspacing="0" summary="">
 167              <tr>
 168                  <td><input name="csearch_news" type="checkbox" id="csearch_news" value="1"<?php is_checked(1, $content['search']["search_news"]) ?> /></td>
 169                  <td class="v10"><label for="csearch_news"><strong><?php echo $BL['be_news'] ?></strong></label>&nbsp;&nbsp;</td>
 170                  <td align="right" class="chatlist"><?php echo $BL['be_profile_label_lang'] ?>:&nbsp;</td>
 171                  <td colspan="2"><input type="text" name="csearch_news_lang" id="news_lang" value="<?php echo html_specialchars(implode(', ', $content['search']["news_lang"])) ?>" class="width200" /></td>
 172              </tr>            
 173              <tr>
 174                  <td colspan="2">&nbsp;</td>
 175                  <td align="right" class="chatlist"><?php echo $BL['be_tags'] ?>:&nbsp;</td>
 176                  <td><input type="text" name="csearch_news_category" id="news_category" value="<?php echo html_specialchars(implode(', ', $content['search']["news_category"])) ?>" class="width200" /></td>
 177                  <td><select name="csearch_news_andor" id="news_andor">
 178                  
 179                      <option value="OR"<?php is_selected('OR', $content['search']['news_andor']) ?>><?php echo $BL['be_fsearch_or'] ?></option>
 180                      <option value="AND"<?php is_selected('AND', $content['search']['news_andor']) ?>><?php echo $BL['be_fsearch_and'] ?></option>
 181                      <option value="NOT"<?php is_selected('NOT', $content['search']['news_andor']) ?>><?php echo $BL['be_fsearch_not'] ?></option>
 182              
 183                  </select></td>
 184              </tr>
 185              <tr>
 186                  <td colspan="2">&nbsp;</td>
 187                  <td align="right" class="chatlist"><?php echo $BL['be_cnt_target'].'/'.$BL['be_profile_label_website'] ?>:&nbsp;</td>
 188                  <td><input type="text" name="csearch_news_url" id="news_url" value="<?php echo html_entities($content['search']["news_url"]) ?>" class="width200" /></td>
 189                  <td>&nbsp;</td>
 190              </tr>
 191          </table>
 192      <script type="text/javascript">
 193      <!--
 194      
 195      window.addEvent('domready', function(){
 196                                           
 197          /* Autocompleter for categories/tags */
 198          var searchCategory = $('news_category');
 199          var indicator2 = new Element('span', {'class': 'autocompleter-loading', 'styles': {'display': 'none'}}).setHTML('').injectAfter(searchCategory);
 200          var completer2 = new Autocompleter.Ajax.Json(searchCategory, 'include/inc_act/ajax_connector.php', {
 201              multi: true,
 202              maxChoices: 30,
 203              autotrim: true,
 204              minLength: 0,
 205              allowDupes: false,
 206              postData: {action: 'newstags', method: 'json'},
 207              onRequest: function(el) {
 208                  indicator2.setStyle('display', '');
 209              },
 210              onComplete: function(el) {
 211                  indicator2.setStyle('display', 'none');
 212              }
 213          });
 214          
 215          var selectLang = $('news_lang');
 216          var indicator1 = new Element('span', {'class': 'autocompleter-loading', 'styles': {'display': 'none'}}).setHTML('').injectAfter(selectLang);
 217          var completer1 = new Autocompleter.Ajax.Json(selectLang, 'include/inc_act/ajax_connector.php', {
 218              multi: true,
 219              allowDupes: false,
 220              autotrim: true,
 221              minLength: 0,
 222              maxChoices: 20,
 223              postData: {action: 'lang', method: 'json'},
 224              onRequest: function(el) {
 225                  indicator1.setStyle('display', '');
 226              },
 227              onComplete: function(el) {
 228                  indicator1.setStyle('display', 'none');
 229              }
 230          });
 231          
 232          selectLang.addEvent('keyup', function(){
 233              this.value = this.value.replace(/[^a-z\-\, ]/g, '');
 234          });
 235      
 236      });
 237      
 238      //-->
 239      </script>
 240      </td>
 241  </tr>
 242    
 243  <?php
 244  
 245  $content['search']['module_search'] = array();
 246  
 247  // check modules for frontend search
 248  foreach($phpwcms['modules'] as $value) {
 249  
 250      // check if module is fe searchable
 251      if($value['search'] === true && is_file($value['path'].'frontend.search.php')) {
 252          
 253          $value['tr']  = '<tr>';
 254          $value['tr'] .= '<td><input name="csearch_module['.$value['name'].']" type="checkbox" ';
 255          $value['tr'] .= 'id="csearch_module_'.$value['name'].'" value="1"';
 256          if( !empty( $content['search']['module'][ $value['name'] ] ) ) {
 257              $value['tr'] .= ' checked="checked"';
 258          }
 259          $value['tr'] .= ' /></td>';
 260          $value['tr'] .= '<td class="v10"><label for="csearch_module_'.$value['name'].'">';
 261          $value['tr'] .= $BL['be_ctype_module'].': '.$BL['modules'][ $value['name'] ]['backend_menu'] . '</label></td>';        
 262          $value['tr'] .= '</tr>';
 263          
 264          $content['search']['module_search'][] = $value['tr'];
 265      
 266      }
 267  
 268  }
 269  
 270  if(count($content['search']['module_search'])) {
 271  
 272      echo '<tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="5" /></td></tr>';
 273      echo '<tr><td>&nbsp;</td>';
 274      echo '<td valign="top">';
 275      echo '<table border="0" cellpadding="1" cellspacing="0" summary="">';
 276      echo implode(LF, $content['search']['module_search'])    ;
 277      echo '</table></td></tr>';
 278  }
 279  ?>
 280  
 281   <tr><td colspan="2" class="rowspacer7x7"><img src="img/leer.gif" alt="" width="1" height="1" /></td></tr>
 282    
 283     <tr>
 284      <td align="right" class="chatlist">&nbsp;&nbsp;</td>
 285      <td valign="top" class="chatlist"><?php echo $BL['be_cnt_searchlabeltext'] ?></td>
 286    </tr>
 287    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="4" /></td></tr>
 288  
 289  
 290    <tr>
 291      <td align="right" class="chatlist"><?php echo $BL['be_cnt_input'] ?>:&nbsp;</td>
 292      <td valign="top"><table border="0" cellpadding="0" cellspacing="0" summary="">
 293        <tr>
 294          <td><input name="csearch_label_input" type="text" class="f11b" id="csearch_label_input" style="width: 150px" value="<?php echo  isset($content["search"]["label_input"]) ? $content["search"]["label_input"] : '' ?>" size="10" maxlength="250" /></td>
 295          <td class="chatlist">&nbsp;&nbsp;&nbsp;<?php echo $BL['be_cnt_css_class'] ?>:&nbsp;</td>
 296          <td><input name="csearch_style_input" type="text" id="csearch_style_input" class="f11b" style="width: 200px" value="<?php echo  isset($content["search"]["style_input"]) ? $content["search"]["style_input"] : '' ?>" size="20" /></td>
 297        </tr>
 298      </table></td>
 299    </tr>
 300    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="2" /></td></tr>
 301    <tr>
 302      <td align="right" class="chatlist"><?php echo $BL['be_cnt_buttontext'] ?>:&nbsp;</td>
 303      <td valign="top"><table border="0" cellpadding="0" cellspacing="0" summary="">
 304        <tr>
 305          <td><input name="csearch_label_button" type="text" id="csearch_label_button" class="f11b" style="width: 150px" value="<?php echo  isset($content["search"]["label_button"]) ? $content["search"]["label_button"] : '' ?>" size="10" maxlength="75" /></td>
 306          <td class="chatlist">&nbsp;&nbsp;&nbsp;<?php echo $BL['be_cnt_css_class'] ?>:&nbsp;</td>
 307          <td><input name="csearch_style_button" type="text" id="csearch_style_button" class="f11b" style="width: 200px" value="<?php echo  isset($content["search"]["style_button"]) ? $content["search"]["style_button"] : '' ?>" size="20" /></td>
 308        </tr>
 309      </table></td>
 310    </tr>
 311    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="2" /></td>
 312  </tr>
 313    <tr>
 314      <td align="right" class="chatlist"><?php echo $BL['be_cnt_result'] ?>:&nbsp;</td>
 315      <td valign="top"><table border="0" cellpadding="0" cellspacing="0" summary="">
 316        <tr>
 317          <td><input name="csearch_label_result" type="text" id="csearch_label_result" class="f11b" style="width: 150px" value="<?php echo  isset($content["search"]["label_result"]) ? html_specialchars($content["search"]["label_result"]) : '' ?>" size="10" maxlength="250" /></td>
 318          <td class="chatlist">&nbsp;&nbsp;&nbsp;<?php echo $BL['be_cnt_css_class'] ?>:&nbsp;</td>
 319          <td><input name="csearch_style_result" type="text" id="csearch_style_result" class="f11b" style="width: 200px" value="<?php echo  isset($content["search"]["style_result"]) ? $content["search"]["style_result"] : '' ?>" size="20" /></td>
 320        </tr>
 321      </table>
 322      </td>
 323    </tr>
 324    
 325   <tr><td colspan="2" class="rowspacer7x7"><img src="img/leer.gif" alt="" width="1" height="1" /></td></tr>
 326    
 327    <tr>
 328      <td align="right" class="chatlist" valign="top"><?php echo $BL['be_cnt_page_of_pages'] ?>:&nbsp;</td>
 329      <td valign="top"><table border="0" cellpadding="0" cellspacing="0" summary="">
 330      
 331        <tr>
 332        <td class="chatlist"><?php echo $BL['be_cnt_page_of_pages_descr'] ?></td>
 333        </tr>
 334      </table>
 335      
 336      <table border="0" cellpadding="1" cellspacing="0" style="margin-top:3px;margin-bottom:1px;" summary="">
 337          <tr bgcolor="#E7E8EB">
 338        <?php
 339        
 340        if(!isset($content["search"]["show_always"]))        $content["search"]["show_always"]     = 1;
 341        if(!isset($content["search"]["show_top"]))        $content["search"]["show_top"]         = 1;
 342        if(!isset($content["search"]["show_bottom"]))        $content["search"]["show_bottom"]     = 1;
 343        if(!isset($content["search"]["show_next"]))        $content["search"]["show_next"]     = 1;
 344        if(!isset($content["search"]["show_prev"]))        $content["search"]["show_prev"]     = 1;      
 345        
 346        ?>
 347          <td><input name="csearch_show_always" id="csearch_show_always" type="checkbox" value="1" <?php is_checked(1, $content["search"]["show_always"]) ?> /></td>
 348          <td class="v10"><label for="csearch_show_always"><?php echo $BL['be_cnt_search_show_forall'] ?></label>&nbsp;</td>
 349          
 350          <td><input name="csearch_show_top" id="csearch_show_top" type="checkbox" value="1" <?php is_checked(1, $content["search"]["show_top"]) ?> /></td>
 351          <td class="v10"><label for="csearch_show_top"><?php echo $BL['be_cnt_search_show_top'] ?></label>&nbsp;</td>
 352          
 353          <td><input name="csearch_show_bottom" id="csearch_show_bottom" type="checkbox" value="1" <?php is_checked(1, $content["search"]["show_bottom"]) ?> /></td>
 354          <td class="v10"><label for="csearch_show_bottom"><?php echo $BL['be_cnt_search_show_bottom'] ?></label>&nbsp;</td>
 355      </tr>
 356      </table>
 357      <table border="0" cellpadding="1" cellspacing="0" summary="">
 358          <tr bgcolor="#E7E8EB">    
 359          <td><input name="csearch_show_prev" id="csearch_show_prev" type="checkbox" value="1" <?php is_checked(1, $content["search"]["show_prev"]) ?> /></td>
 360          <td class="v10"><label for="csearch_show_prev"><?php echo $BL['be_cnt_search_show_prev'] ?></label>&nbsp;</td>
 361          
 362          <td><input name="csearch_show_next" id="csearch_show_next" type="checkbox" value="1" <?php is_checked(1, $content["search"]["show_next"]) ?> /></td>
 363          <td class="v10"><label for="csearch_show_next"><?php echo $BL['be_cnt_search_show_next'] ?></label>&nbsp;</td>
 364          
 365        </tr>
 366      </table></td>
 367    </tr> 
 368      
 369    <tr>
 370      <td align="right" class="chatlist" valign="top" >&nbsp;</td>
 371      <td><textarea name="csearch_label_pages" rows="4" class="f11" id="csearch_label_pages" style="width: 440px"><?php echo  isset($content["search"]["label_pages"]) ? html_specialchars($content["search"]["label_pages"]) : '' ?></textarea></td>
 372    </tr>
 373    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="8" /></td>
 374  </tr>
 375    <tr>
 376      <td align="right" class="chatlist"><?php echo $BL['be_cnt_align'] ?>:&nbsp;</td>
 377      <td valign="top"><table border="0" cellpadding="0" cellspacing="0" summary="">
 378        <tr>
 379        <?php
 380        
 381        if(!isset($content["search"]["align"])) {
 382            $content["search"]["align"] = 0;
 383        }
 384        
 385        ?>
 386          <td><input name="csearch_align" id="csearch_align0" type="radio" value="0" <?php is_checked(0, $content["search"]["align"]) ?> /></td>
 387          <td class="v10">&nbsp;<label for="csearch_align0"><?php echo $BL['be_cnt_mediapos0'] ?></label>&nbsp;&nbsp;&nbsp;</td>
 388          <td><input name="csearch_align" id="csearch_align1" type="radio" value="1" <?php is_checked(1, $content["search"]["align"]) ?> /></td>
 389          <td class="v10">&nbsp;<label for="csearch_align1"><?php echo $BL['be_cnt_right'] ?></label>&nbsp;&nbsp;&nbsp;</td>
 390          <td><input name="csearch_align" id="csearch_align2" type="radio" value="2" <?php is_checked(2, $content["search"]["align"]) ?> /></td>
 391          <td class="v10">&nbsp;<label for="csearch_align2"><?php echo $BL['be_cnt_center'] ?></label></td>
 392        </tr>
 393      </table></td>
 394    </tr>
 395    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="8" /></td>
 396  </tr>
 397    <tr>
 398      <td align="right" class="chatlist">&nbsp;&nbsp;</td>
 399      <td valign="top" class="chatlist"><?php echo $BL['be_cnt_searchformtext'] ?></td>
 400    </tr>
 401    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="4" /></td>
 402  </tr>
 403      <tr>
 404          <td>&nbsp;</td>
 405          <td><table border="0" cellpadding="1" cellspacing="0" summary="">
 406              <tr bgcolor="#E7E8EB">
 407                  <td><input type="radio" name="csearch_text_html" id="csearch_text_html0" value="0"<?php echo is_checked('0', $content['search']["text_html"], 0, 0) ?> title="redirect on success" /></td>
 408                  <td class="v10"><label for="csearch_text_html0">Text&nbsp;</label>&nbsp;</td>
 409                  <td><input type="radio" name="csearch_text_html" id="csearch_text_html1" value="1"<?php echo is_checked('1', $content['search']["text_html"], 0, 0) ?> title="redirect on success" /></td>
 410                  <td class="v10"><label for="csearch_text_html1">HTML&nbsp;</label>&nbsp;</td>
 411              </tr>
 412          </table>
 413          </td>
 414      </tr>  
 415    <tr>
 416      <td align="right" class="chatlist tdtop3"><?php echo $BL['be_cnt_intro'] ?>:&nbsp;</td>
 417      <td valign="top"><textarea name="csearch_text_intro" rows="6" class="f10" id="csearch_text_intro" style="width: 440px"><?php echo  isset($content["search"]["text_intro"]) ? $content["search"]["text_intro"] : '' ?></textarea></td>
 418    </tr>
 419    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="3" /></td>
 420  </tr>
 421    <tr>
 422      <td align="right" class="chatlist tdtop3"><?php echo $BL['be_cnt_result'] ?>:&nbsp;</td>
 423      <td valign="top"><textarea name="csearch_text_result" rows="6" class="f10"  id="csearch_text_result" style="width: 440px"><?php echo  isset($content["search"]["text_result"]) ? $content["search"]["text_result"] : '' ?></textarea></td>
 424    </tr>
 425    <tr><td colspan="2"><img src="img/leer.gif" alt="" width="1" height="3" /></td>
 426  </tr>
 427    <tr>
 428      <td align="right" class="chatlist tdtop3" nowrap="nowrap"><?php echo $BL['be_cnt_noresult'] ?>:&nbsp;</td>
 429      <td valign="top"><textarea name="csearch_text_noresult" rows="6" class="f10"  id="csearch_text_noresult" style="width: 440px"><?php echo  isset($content["search"]["text_noresult"]) ? $content["search"]["text_noresult"] : '' ?></textarea></td>
 430    </tr>
 431    
 432   <tr><td colspan="2" class="rowspacer7x0"><img src="img/leer.gif" alt="" width="1" height="1" /></td></tr>


Generated: Sun Jan 29 16:31:14 2012 Cross-referenced by PHPXref 0.7.1