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