import v1.1.0_RC2 | 2009-09-20
This commit is contained in:
@ -1,127 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Zend Framework
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This source file is subject to the new BSD license that is bundled
|
||||
* with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://framework.zend.com/license/new-bsd
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@zend.com so we can send you a copy immediately.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: CodeGenerator.php 11560 2008-10-01 10:09:10Z yoshida@zend.co.jp $
|
||||
*/
|
||||
|
||||
require_once 'Zend/Soap/Wsdl/Parser.php';
|
||||
|
||||
/**
|
||||
* Zend_Soap_Wsdl_CodeGenerator
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
*/
|
||||
class Zend_Soap_Wsdl_CodeGenerator {
|
||||
|
||||
/**
|
||||
* @var string WSDL Filename/URI
|
||||
*/
|
||||
private static $filename = null;
|
||||
|
||||
/**
|
||||
* @var string PHP Code for output
|
||||
*/
|
||||
private static $php_code;
|
||||
|
||||
/**
|
||||
* @var object Zend_Soap_Wsdl_Parser Result
|
||||
*/
|
||||
private static $wsdl;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param string $wsdl Filename, URI or XML for the WSDL
|
||||
* @param string $output Output file name, default: null
|
||||
*/
|
||||
public static function parse($wsdl, $output = null)
|
||||
{
|
||||
self::$wsdl = Zend_Soap_Wsdl_Parser::parse($wsdl);
|
||||
|
||||
self::$php_code = self::generatePhp();
|
||||
|
||||
if (!is_null($output) && is_writable($output)) {
|
||||
file_put_contents($output);
|
||||
}
|
||||
|
||||
return self::$php_code;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate the output PHP
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
private function generatePhp()
|
||||
{
|
||||
$php_code = '<?php' . "\n";
|
||||
if (isset(self::$wsdl->documentation)) {
|
||||
$docs = self::$wsdl->documentation;
|
||||
$docs = explode("\n", $docs);
|
||||
$php_code .= "/**\n";
|
||||
foreach ($docs as $line) {
|
||||
$php_code .= ' * ' .trim($line). PHP_EOL;
|
||||
}
|
||||
$php_code .= " */\n\n";
|
||||
}
|
||||
if (!isset(self::$wsdl->name)) {
|
||||
$classname = 'SoapService';
|
||||
} else {
|
||||
$classname = self::$wsdl->name;
|
||||
}
|
||||
|
||||
$php_code .= "class {$classname} {\n";
|
||||
|
||||
foreach (self::$wsdl->operations as $name => $io) {
|
||||
if (isset($io['documentation'])) {
|
||||
$php_code .= "\n\t/**\n";
|
||||
$docs = $io['documentation'];
|
||||
$docs = explode("\n", $docs);
|
||||
foreach ($docs as $line) {
|
||||
$php_code .= "\t * " .trim($line). PHP_EOL;
|
||||
}
|
||||
$php_code .= "\t */\n";
|
||||
}
|
||||
$php_code .= "\n\tpublic function {$name} (";
|
||||
if (isset($io['input'])) {
|
||||
$arg_names = array();
|
||||
foreach ($io['input'] as $arg) {
|
||||
$arg_names[] = $arg['name'];
|
||||
}
|
||||
$php_code .= '$' .implode(', $', $arg_names);
|
||||
}
|
||||
$php_code .= ')';
|
||||
$php_code .= "\n\t{";
|
||||
$php_code .= "\n\t\t\n";
|
||||
if (isset($io['output'])) {
|
||||
$php_code .= "\t\treturn \${$io['output']['name']};\n";
|
||||
}
|
||||
$php_code .= "\t}\n";
|
||||
}
|
||||
|
||||
$php_code .= "\n}";
|
||||
|
||||
$php_code .= PHP_EOL. "\$server = new SoapServer;" .PHP_EOL;
|
||||
$php_code .= "\$server->setClass($classname);";
|
||||
$php_code .= "\n?>";
|
||||
return $php_code;
|
||||
}
|
||||
}
|
||||
|
@ -15,9 +15,9 @@
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @subpackage Wsdl
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id$
|
||||
* @version $Id: Exception.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
*/
|
||||
|
||||
require_once "Zend/Exception.php";
|
||||
|
@ -1,173 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Zend Framework
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This source file is subject to the new BSD license that is bundled
|
||||
* with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://framework.zend.com/license/new-bsd
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@zend.com so we can send you a copy immediately.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Parser.php 12080 2008-10-22 16:40:33Z beberlei $
|
||||
*/
|
||||
|
||||
require_once 'Zend/Soap/Wsdl/Parser/Result.php';
|
||||
|
||||
/**
|
||||
* Zend_Soap_Wsdl_Parser
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
*/
|
||||
class Zend_Soap_Wsdl_Parser {
|
||||
/**
|
||||
* @var SimpleXML object for the WSDL document being parsed
|
||||
*/
|
||||
private static $xml;
|
||||
|
||||
/**
|
||||
* Parse a WSDL document into a generic object
|
||||
*
|
||||
* @param string|file $wsdl The WSDL document or a filename for the WSDL document to parse
|
||||
* @return Zend_Soap_Wsdl_Parser_Result The contents of the WSDL file
|
||||
*/
|
||||
public static function parse($wsdl)
|
||||
{
|
||||
if (strpos($wsdl, '<') === false) {
|
||||
$wsdl_result = new Zend_Soap_Wsdl_Parser_Result($wsdl);
|
||||
$wsdl = file_get_contents($wsdl);
|
||||
} else {
|
||||
$tmp = tempnam(ini_get('upload_tmp_dir'), 'ZF_Temp_');
|
||||
file_put_contents($tmp, $wsdl);
|
||||
$wsdl_result = new Zend_Soap_Wsdl_Parser_Result($tmp);
|
||||
}
|
||||
|
||||
self::$xml = simplexml_load_string($wsdl);
|
||||
|
||||
/* This is done so that we have a known prefix to the WSDL elements
|
||||
for XPath queries */
|
||||
|
||||
self::$xml['xmlns:zfwsdl'] = 'http://schemas.xmlsoap.org/wsdl/';
|
||||
|
||||
self::$xml = simplexml_load_string(self::$xml->asXML());
|
||||
|
||||
if (isset(self::$xml->documentation)) {
|
||||
$wsdl_result->documentation = trim(self::$xml->documentation);
|
||||
}
|
||||
if (!isset(self::$xml['name'])) {
|
||||
$wsdl_result->name = null;
|
||||
} else {
|
||||
$wsdl_result->name = (string) self::$xml['name'];
|
||||
}
|
||||
|
||||
foreach (self::$xml->binding->operation as $operation) {
|
||||
$name = (string) $operation['name'];
|
||||
$wsdl_result->operations[$name] = array();
|
||||
$wsdl_result->operations[$name]['input'] = self::getOperationInputs($name);
|
||||
$wsdl_result->operations[$name]['output'] = self::getOperationOutput($name);
|
||||
$wsdl_result->operations[$name]['documentation'] = self::getDocs($name);
|
||||
}
|
||||
|
||||
$wsdl_result->portType = (string) self::$xml->portType['name'];
|
||||
$wsdl_result->binding = (string) self::$xml->binding['name'];
|
||||
$wsdl_result->service['name'] = (string) self::$xml->service['name'];
|
||||
$wsdl_result->service['address'] = (string) self::$xml->service->port->children('http://schemas.xmlsoap.org/wsdl/soap/')->attributes();
|
||||
$wsdl_result->targetNamespace = (string) self::$xml['targetNamespace'];
|
||||
|
||||
return $wsdl_result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Function arguments
|
||||
*
|
||||
* @param string $operation_name Name of the <operation> element to find
|
||||
* @return string
|
||||
*/
|
||||
private static function getOperationInputs($operation_name)
|
||||
{
|
||||
$operation = self::$xml->xpath('/zfwsdl:definitions[1]/zfwsdl:portType/zfwsdl:operation[@name="' .$operation_name. '"]');
|
||||
|
||||
if ($operation == null) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (isset($operation[0]->input)) {
|
||||
$input_message_name = $operation[0]->input['message'];
|
||||
$input_message_name = explode(':', $input_message_name);
|
||||
$input_message_name = $input_message_name[1];
|
||||
$input_message = self::$xml->xpath('/zfwsdl:definitions[1]/zfwsdl:message[@name="' .$input_message_name. '"]');
|
||||
}
|
||||
|
||||
if ($input_message != null) {
|
||||
foreach ($input_message[0]->part as $part) {
|
||||
$args[] = array(
|
||||
'name' => (string) $part['name'],
|
||||
'type' => (string) $part['type'],
|
||||
);
|
||||
}
|
||||
|
||||
if (isset($args) && is_array($args)) {
|
||||
return $args;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Function return variable
|
||||
*
|
||||
* @param string $operation_name Name of the <operation> element to find
|
||||
* @return string|false Returns variable name if found, or false
|
||||
*/
|
||||
private static function getOperationOutput($operation_name)
|
||||
{
|
||||
$operation = self::$xml->xpath('/zfwsdl:definitions[1]/zfwsdl:portType/zfwsdl:operation[@name="' .$operation_name. '"]');
|
||||
|
||||
|
||||
if (isset($operation[0]->output)) {
|
||||
$output_message_name = $operation[0]->output['message'];
|
||||
$output_message_name = explode(':', $output_message_name);
|
||||
$output_message_name = $output_message_name[1];
|
||||
$output_message = self::$xml->xpath('/zfwsdl:definitions[1]/zfwsdl:message[@name="' .$output_message_name. '"]');
|
||||
}
|
||||
|
||||
if ($output_message != null) {
|
||||
return array(
|
||||
'name' => (string) $output_message[0]->part['name'],
|
||||
'type' => (string) $output_message[0]->part['type']
|
||||
);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Function Documentation
|
||||
*
|
||||
* @param string $operation_name Name of the <operation> element to find
|
||||
* @return string
|
||||
*/
|
||||
private static function getDocs($operation_name)
|
||||
{
|
||||
|
||||
$portType = self::$xml->xpath('//zfwsdl:operation[@name="' .$operation_name. '"]/zfwsdl:documentation');
|
||||
if (isset($portType) && is_array($portType) && (sizeof($portType) >= 1)) {
|
||||
return trim((string) $portType[0]);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,52 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Zend Framework
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This source file is subject to the new BSD license that is bundled
|
||||
* with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://framework.zend.com/license/new-bsd
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@zend.com so we can send you a copy immediately.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Result.php 11560 2008-10-01 10:09:10Z yoshida@zend.co.jp $
|
||||
*/
|
||||
|
||||
/**
|
||||
* Zend_Soap_Wsdl_Parser_Result
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
*/
|
||||
class Zend_Soap_Wsdl_Parser_Result {
|
||||
|
||||
public $wsdl_file = '';
|
||||
|
||||
public $name;
|
||||
|
||||
public $documentation;
|
||||
|
||||
public $operations;
|
||||
|
||||
public $portType;
|
||||
|
||||
public $binding;
|
||||
|
||||
public $service;
|
||||
|
||||
public $targetNamespace;
|
||||
|
||||
public function __construct($wsdl)
|
||||
{
|
||||
$this->wsdl_file = $wsdl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,12 +15,12 @@
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @subpackage Wsdl
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id$
|
||||
* @version $Id: Abstract.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
*/
|
||||
|
||||
require_once "Interface.php";
|
||||
require_once "Zend/Soap/Wsdl/Strategy/Interface.php";
|
||||
|
||||
/**
|
||||
* Abstract class for Zend_Soap_Wsdl_Strategy.
|
||||
@ -28,7 +28,7 @@ require_once "Interface.php";
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @subpackage Wsdl
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
abstract class Zend_Soap_Wsdl_Strategy_Abstract implements Zend_Soap_Wsdl_Strategy_Interface
|
||||
|
@ -15,12 +15,12 @@
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @subpackage Wsdl
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id$
|
||||
* @version $Id: AnyType.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
*/
|
||||
|
||||
require_once "Interface.php";
|
||||
require_once "Zend/Soap/Wsdl/Strategy/Interface.php";
|
||||
|
||||
class Zend_Soap_Wsdl_Strategy_AnyType implements Zend_Soap_Wsdl_Strategy_Interface
|
||||
{
|
||||
|
@ -15,9 +15,9 @@
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @subpackage Wsdl
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id$
|
||||
* @version $Id: ArrayOfTypeComplex.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
*/
|
||||
|
||||
require_once "Zend/Soap/Wsdl/Strategy/DefaultComplexType.php";
|
||||
|
@ -14,14 +14,14 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id$
|
||||
* @version $Id: ArrayOfTypeSequence.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
*/
|
||||
|
||||
require_once "Abstract.php";
|
||||
require_once "Zend/Soap/Wsdl/Strategy/DefaultComplexType.php";
|
||||
|
||||
class Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence extends Zend_Soap_Wsdl_Strategy_Abstract
|
||||
class Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence extends Zend_Soap_Wsdl_Strategy_DefaultComplexType
|
||||
{
|
||||
/**
|
||||
* Add an unbounded ArrayOfType based on the xsd:sequence syntax if type[] is detected in return value doc comment.
|
||||
@ -37,7 +37,7 @@ class Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence extends Zend_Soap_Wsdl_Strateg
|
||||
$singularType = $this->_getSingularType($type);
|
||||
|
||||
for($i = 1; $i <= $nestedCounter; $i++) {
|
||||
$complexTypeName = $this->_getTypeNameBasedOnNestingLevel($singularType, $i);
|
||||
$complexTypeName = substr($this->_getTypeNameBasedOnNestingLevel($singularType, $i), 4);
|
||||
$childTypeName = $this->_getTypeNameBasedOnNestingLevel($singularType, $i-1);
|
||||
|
||||
$this->_addElementFromWsdlAndChildTypes($complexTypeName, $childTypeName);
|
||||
@ -46,11 +46,12 @@ class Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence extends Zend_Soap_Wsdl_Strateg
|
||||
$this->getContext()->addType($complexTypeName);
|
||||
|
||||
return "tns:$complexTypeName";
|
||||
} else if (!in_array($type, $this->getContext()->getTypes())) {
|
||||
// New singular complex type
|
||||
return parent::addComplexType($type);
|
||||
} else {
|
||||
require_once "Zend/Soap/Wsdl/Exception.php";
|
||||
throw new Zend_Soap_Wsdl_Exception(sprintf(
|
||||
'ArrayOfTypeSequence Strategy does not allow for complex types that are not in @return type[] syntax. "%s" type was specified.', $type
|
||||
));
|
||||
// Existing complex type
|
||||
return $this->getContext()->getType($type);
|
||||
}
|
||||
}
|
||||
|
||||
@ -70,7 +71,7 @@ class Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence extends Zend_Soap_Wsdl_Strateg
|
||||
$prefix = str_repeat("ArrayOf", $level);
|
||||
$xsdType = $this->_getStrippedXsdType($singularType);
|
||||
$arrayType = $prefix.$xsdType;
|
||||
return $arrayType;
|
||||
return "tns:$arrayType";
|
||||
}
|
||||
}
|
||||
|
||||
@ -95,14 +96,6 @@ class Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence extends Zend_Soap_Wsdl_Strateg
|
||||
protected function _getSingularType($type)
|
||||
{
|
||||
$singulartype = $this->getContext()->getType(str_replace("[]", "", $type));
|
||||
|
||||
if(substr($singulartype, 0, 4) != "xsd:") {
|
||||
require_once "Zend/Soap/Wsdl/Exception.php";
|
||||
throw new Zend_Soap_Wsdl_Exception(sprintf(
|
||||
'ArrayOfTypeSequence Strategy works only with arrays of simple types like int, string, boolean, not with "%s".'.
|
||||
'You may use Zend_Soap_Wsdl_Strategy_ArrayOfTypeComplex for more complex types.', $type
|
||||
));
|
||||
}
|
||||
return $singulartype;
|
||||
}
|
||||
|
||||
@ -147,4 +140,4 @@ class Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence extends Zend_Soap_Wsdl_Strateg
|
||||
$this->getContext()->addType($arrayType);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -15,11 +15,13 @@
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @subpackage Wsdl
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id$
|
||||
* @version $Id: Composite.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
*/
|
||||
|
||||
require_once "Zend/Soap/Wsdl/Strategy/Interface.php";
|
||||
|
||||
class Zend_Soap_Wsdl_Strategy_Composite implements Zend_Soap_Wsdl_Strategy_Interface
|
||||
{
|
||||
/**
|
||||
|
@ -15,12 +15,12 @@
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @subpackage Wsdl
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id$
|
||||
* @version $Id: DefaultComplexType.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
*/
|
||||
|
||||
require_once "Abstract.php";
|
||||
require_once "Zend/Soap/Wsdl/Strategy/Abstract.php";
|
||||
|
||||
class Zend_Soap_Wsdl_Strategy_DefaultComplexType extends Zend_Soap_Wsdl_Strategy_Abstract
|
||||
{
|
||||
|
@ -15,9 +15,9 @@
|
||||
* @category Zend
|
||||
* @package Zend_Soap
|
||||
* @subpackage Wsdl
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id$
|
||||
* @version $Id: Interface.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
*/
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user