Source for file txt.php

Documentation is available at txt.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Administrator
  4.  * @subpackage  com_finder
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE
  8.  */
  9.  
  10. defined('_JEXEC'or die;
  11.  
  12. JLoader::register('FinderIndexerParser'dirname(__DIR__'/parser.php');
  13.  
  14. /**
  15.  * Text Parser class for the Finder indexer package.
  16.  *
  17.  * @package     Joomla.Administrator
  18.  * @subpackage  com_finder
  19.  * @since       2.5
  20.  */
  21. {
  22.     /**
  23.      * Method to process Text input and extract the plain text.
  24.      *
  25.      * @param   string  $input  The input to process.
  26.      *
  27.      * @return  string  The plain text input.
  28.      *
  29.      * @since   2.5
  30.      */
  31.     protected function process($input)
  32.     {
  33.         return $input;
  34.     }
  35. }

Documentation generated on Tue, 19 Nov 2013 15:16:02 +0100 by phpDocumentor 1.4.3