Subversion Repositories Applications.gtt

Rev

Rev 94 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
94 jpm 1
<?php
2
/**
3
 * <tasks:windowseol> - read/write version
4
 *
5
 * PHP versions 4 and 5
6
 *
187 mathias 7
 * @category  pear
8
 * @package   PEAR
9
 * @author    Greg Beaver <cellog@php.net>
10
 * @copyright 1997-2009 The Authors
11
 * @license   http://opensource.org/licenses/bsd-license.php New BSD License
12
 * @link      http://pear.php.net/package/PEAR
13
 * @since     File available since Release 1.4.0a10
94 jpm 14
 */
15
/**
16
 * Base class
17
 */
18
require_once 'PEAR/Task/Windowseol.php';
19
/**
20
 * Abstracts the windowseol task xml.
187 mathias 21
 *
22
 * @category  pear
23
 * @package   PEAR
24
 * @author    Greg Beaver <cellog@php.net>
25
 * @copyright 1997-2009 The Authors
26
 * @license   http://opensource.org/licenses/bsd-license.php New BSD License
27
 * @version   Release: 1.10.1
28
 * @link      http://pear.php.net/package/PEAR
29
 * @since     Class available since Release 1.4.0a10
94 jpm 30
 */
31
class PEAR_Task_Windowseol_rw extends PEAR_Task_Windowseol
32
{
187 mathias 33
    function __construct(&$pkg, &$config, &$logger, $fileXml)
94 jpm 34
    {
187 mathias 35
        parent::__construct($config, $logger, PEAR_TASK_PACKAGE);
94 jpm 36
        $this->_contents = $fileXml;
37
        $this->_pkg = &$pkg;
38
        $this->_params = array();
39
    }
40
 
187 mathias 41
    public function validate()
94 jpm 42
    {
43
        return true;
44
    }
45
 
187 mathias 46
    public function getName()
94 jpm 47
    {
48
        return 'windowseol';
49
    }
50
 
187 mathias 51
    public function getXml()
94 jpm 52
    {
53
        return '';
54
    }
55
}
187 mathias 56
?>