home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / tmp / PEAR-1.7.1 / PEAR / Installer / Role / Src.php < prev    next >
Encoding:
PHP Script  |  2008-02-15  |  1.3 KB  |  40 lines

  1. <?php
  2. /**
  3.  * PEAR_Installer_Role_Src
  4.  *
  5.  * PHP versions 4 and 5
  6.  *
  7.  * LICENSE: This source file is subject to version 3.0 of the PHP license
  8.  * that is available through the world-wide-web at the following URI:
  9.  * http://www.php.net/license/3_0.txt.  If you did not receive a copy of
  10.  * the PHP License and are unable to obtain it through the web, please
  11.  * send a note to license@php.net so we can mail you a copy immediately.
  12.  *
  13.  * @category   pear
  14.  * @package    PEAR
  15.  * @author     Greg Beaver <cellog@php.net>
  16.  * @copyright  1997-2008 The PHP Group
  17.  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
  18.  * @version    CVS: $Id: Src.php,v 1.7 2008/01/03 20:26:36 cellog Exp $
  19.  * @link       http://pear.php.net/package/PEAR
  20.  * @since      File available since Release 1.4.0a1
  21.  */
  22.  
  23. /**
  24.  * @category   pear
  25.  * @package    PEAR
  26.  * @author     Greg Beaver <cellog@php.net>
  27.  * @copyright  1997-2008 The PHP Group
  28.  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
  29.  * @version    Release: 1.7.1
  30.  * @link       http://pear.php.net/package/PEAR
  31.  * @since      Class available since Release 1.4.0a1
  32.  */
  33. class PEAR_Installer_Role_Src extends PEAR_Installer_Role_Common
  34. {
  35.     function setup(&$installer, $pkg, $atts, $file)
  36.     {
  37.         $installer->source_files++;
  38.     }
  39. }
  40. ?>