home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / PHP / Beautifier / Batch / Output / FilesGz.php < prev    next >
Encoding:
PHP Script  |  2008-07-02  |  1.5 KB  |  43 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
  3. /**
  4. * Handle the batch process for one/multiple php files to one tar gzip file
  5. *
  6. * PHP version 5
  7. *
  8. * LICENSE: This source file is subject to version 3.0 of the PHP license
  9. * that is available through the world-wide-web at the following URI:
  10. * http://www.php.net/license/3_0.txt.  If you did not receive a copy of
  11. * the PHP License and are unable to obtain it through the web, please
  12. * send a note to license@php.net so we can mail you a copy immediately.
  13. * @category   PHP
  14. * @package PHP_Beautifier
  15. * @subpackage Batch
  16. * @author Claudio Bustos <cdx@users.sourceforge.com>
  17. * @copyright  2004-2006 Claudio Bustos
  18. * @link     http://pear.php.net/package/PHP_Beautifier
  19. * @link     http://beautifyphp.sourceforge.net
  20. * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
  21. * @version    CVS: $Id:$
  22. */
  23. /**
  24. * Include PHP_Beautifier_Batch_FilesGz
  25. */
  26. require_once 'FilesTar.php';
  27. /**
  28. * Handle the batch process for one/multiple php files to one tar gzip file
  29. *
  30. * @category   PHP
  31. * @package PHP_Beautifier
  32. * @author Claudio Bustos <cdx@users.sourceforge.com>
  33. * @copyright  2004-2006 Claudio Bustos
  34. * @link     http://pear.php.net/package/PHP_Beautifier
  35. * @link     http://beautifyphp.sourceforge.net
  36. * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
  37. * @version    Release: 0.1.14
  38. */
  39. class PHP_Beautifier_Batch_Output_FilesGz extends PHP_Beautifier_Batch_Output_FilesTar {
  40.     protected $sCompress = 'gz';
  41.     protected $sExt = 'tgz';
  42. }
  43. ?>