| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/downloader/pearlib/php/PEAR/PackageFileManager/ |
Upload File : |
<?php
/**
* Class for XML output
*
* PHP versions 4 and 5
*
* LICENSE: This source file is subject to version 3.01 of the PHP license
* that is available through the world-wide-web at the following URI:
* http://www.php.net/license/3_01.txt. If you did not receive a copy of
* the PHP License and are unable to obtain it through the web, please
* send a note to license@php.net so we can mail you a copy immediately.
*
* @category PEAR
* @package PEAR_PackageFileManager
* @author Greg Beaver <cellog@php.net>
* @copyright 2006-2007 The PHP Group
* @license http://www.php.net/license/3_01.txt PHP License 3.01
* @version CVS: $Id: ComplexGenerator.php,v 1.3 2007/11/19 22:44:00 farell Exp $
* @link http://pear.php.net/package/PEAR_PackageFileManager
* @since File available since Release 1.5.3
*/
require_once 'PEAR/PackageFile/Generator/v1.php';
/**
* Class for XML output
*
* @category PEAR
* @package PEAR_PackageFileManager
* @author Greg Beaver <cellog@php.net>
* @copyright 2006-2007 The PHP Group
* @license http://www.php.net/license/3_01.txt PHP License 3.01
* @version Release: 1.6.3
* @link http://pear.php.net/package/PEAR_PackageFileManager
* @since Class available since Release 1.5.3
*/
class PEAR_PackageFileManager_ComplexGenerator extends PEAR_PackageFile_Generator_v1
{
var $_options;
var $_provides;
/**
* remove a warning about missing parameters - don't delete this
*/
function PEAR_PackageFileManager_ComplexGenerator()
{
}
/**
* @param array $opts list of generation options
*
* @return void
*/
function setPackageFileManagerOptions($opts)
{
$this->_options = $opts;
}
/**
* Return an XML document based on the package info (as returned
* by the PEAR_Common::infoFrom* methods).
*
* @param array $pkginfo package info
*
* @return string XML data
* @access public
* @deprecated use a PEAR_PackageFile_v* object's generator instead
*/
function xmlFromInfo($pkginfo)
{
include_once 'PEAR/PackageFile.php';
include_once 'PEAR/Config.php';
$config = &PEAR_Config::singleton();
$packagefile = &new PEAR_PackageFile($config);
$pf = &$packagefile->fromArray($pkginfo);
if (!$pf->validate(PEAR_VALIDATE_NORMAL)) {
$errors = $pf->getValidationWarnings();
return PEAR::raiseError('Invalid package.xml file', null, null, null, $errors);
}
if (isset($this->_provides)) {
$pf->_buildProvidesArray($this->_provides);
}
parent::PEAR_PackageFile_Generator_v1($pf);
$ret = $this->toXml();
if (!$ret) {
$errors = $pf->getValidationWarnings();
return PEAR::raiseError('Invalid package.xml file', null, null, null, $errors);
}
return $ret;
}
function getFileRoles()
{
return PEAR_Common::getFileRoles();
}
function getReplacementTypes()
{
return PEAR_Common::getReplacementTypes();
}
/**
* Validate XML package definition file.
*
* @param string $info Filename of the package archive or of the
* package definition file
* @param array &$errors Array that will contain the errors
* @param array &$warnings Array that will contain the warnings
* @param string $dir_prefix (optional) directory where source files
* may be found, or empty if they are not available
*
* @access public
* @return boolean
* @deprecated use the validation of PEAR_PackageFile objects
*/
function validatePackageInfo($info, &$errors, &$warnings, $dir_prefix = '')
{
// validation is done in xmlFromInfo()
return true;
}
function analyzeSourceCode($file)
{
return PEAR_Common::analyzeSourceCode($file);
}
function buildProvidesArray($a)
{
$this->_provides = $a;
}
}
?>