00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Api_Model_Wsdl_Config_Base extends Varien_Simplexml_Config
00035 {
00036 protected $_handler = '';
00037
00038
00039
00040
00041 protected $_wsdlVariables = null;
00042
00043 protected $_loadedFiles = array();
00044
00045 public function __construct($sourceData=null)
00046 {
00047 $this->_elementClass = 'Mage_Api_Model_Wsdl_Config_Element';
00048 parent::__construct($sourceData);
00049 }
00050
00051
00052
00053
00054
00055
00056
00057 public function setHandler($handler)
00058 {
00059 $this->_handler = $handler;
00060 return $this;
00061 }
00062
00063
00064
00065
00066
00067
00068 public function getHandler()
00069 {
00070 return $this->_handler;
00071 }
00072
00073
00074
00075
00076
00077
00078
00079 public function processFileData($text)
00080 {
00081 $template = Mage::getModel('core/email_template_filter');
00082
00083 if (null === $this->_wsdlVariables) {
00084 $this->_wsdlVariables = new Varien_Object();
00085 $this->_wsdlVariables->setUrl(Mage::getUrl('*/*/*'));
00086 $this->_wsdlVariables->setName('Magento');
00087 $this->_wsdlVariables->setHandler($this->getHandler());
00088 }
00089
00090 $template->setVariables(array('wsdl'=>$this->_wsdlVariables));
00091
00092 $text = $template->filter($text);
00093
00094 return $text;
00095 }
00096
00097 public function addLoadedFile($file)
00098 {
00099 if (!in_array($file, $this->_loadedFiles)) {
00100 $this->_loadedFiles[] = $file;
00101 }
00102 return $this;
00103 }
00104
00105 public function loadFile($file)
00106 {
00107 if (in_array($file, $this->_loadedFiles)) {
00108 return false;
00109 }
00110 $res = parent::loadFile($file);
00111 if ($res) {
00112 $this->addLoadedFile($file);
00113 }
00114 return $this;
00115 }
00116 }