[ Index ]
 

Code source de PRADO 3.0.6

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/demos/quickstart/protected/index/Zend/Search/Lucene/Analysis/Analyzer/Common/Text/ -> CaseInsensitive.php (source)

   1  <?php
   2  /**
   3   * Zend Framework
   4   *
   5   * LICENSE
   6   *
   7   * This source file is subject to version 1.0 of the Zend Framework
   8   * license, that is bundled with this package in the file LICENSE, and
   9   * is available through the world-wide-web at the following URL:
  10   * http://www.zend.com/license/framework/1_0.txt. If you did not receive
  11   * a copy of the Zend Framework license and are unable to obtain it
  12   * through the world-wide-web, please send a note to license@zend.com
  13   * so we can mail you a copy immediately.
  14   *
  15   * @package    Zend_Search_Lucene
  16   * @subpackage Analysis
  17   * @copyright  Copyright (c) 2005-2006 Zend Technologies USA Inc. (http://www.zend.com)
  18   * @license    http://www.zend.com/license/framework/1_0.txt Zend Framework License version 1.0
  19   */
  20  
  21  
  22  /** Zend_Search_Lucene_Analysis_Analyzer_Common_Text */
  23  require_once 'Zend/Search/Lucene/Analysis/Analyzer/Common/Text.php';
  24  
  25  /** Zend_Search_Lucene_Analysis_TokenFilter_LowerCase */
  26  require_once 'Zend/Search/Lucene/Analysis/TokenFilter/LowerCase.php';
  27  
  28  
  29  /**
  30   * @package    Zend_Search_Lucene
  31   * @subpackage Analysis
  32   * @copyright  Copyright (c) 2005-2006 Zend Technologies USA Inc. (http://www.zend.com)
  33   * @license    http://www.zend.com/license/framework/1_0.txt Zend Framework License version 1.0
  34   */
  35  
  36  class Zend_Search_Lucene_Analysis_Analyzer_Common_Text_CaseInsensitive extends Zend_Search_Lucene_Analysis_Analyzer_Common_Text
  37  {
  38      public function __construct()
  39      {
  40          $this->addFilter(new Zend_Search_Lucene_Analysis_TokenFilter_LowerCase());
  41      }
  42  }
  43  


Généré le : Sun Feb 25 21:07:04 2007 par Balluche grâce à PHPXref 0.7