Example #1
0
 function __construct($xmlPath, Zend_Config $config, $sourcePath = "sources/java")
 {
     parent::__construct($xmlPath, $sourcePath, $config);
     $this->_usePrivateAttributes = isset($config->usePrivateAttributes) ? $config->usePrivateAttributes : false;
     $this->_doc = new KDOMDocument();
     $this->_doc->load($this->_xmlFile);
 }
Example #2
0
 function __construct($xmlPath, Zend_Config $config, $sourcePath = "sources/bpmn")
 {
     parent::__construct($xmlPath, $sourcePath, $config);
     $this->template = file_get_contents("{$sourcePath}/action.template.bpmn");
     $this->excludeSourcePaths[] = 'action.template.bpmn';
     $this->_doc = new KDOMDocument();
     $this->_doc->load($this->_xmlFile);
 }
 function __construct($xmlPath, Zend_Config $config, $sourcePath = "sources/csharp")
 {
     parent::__construct($xmlPath, $sourcePath, $config);
     $this->_doc = new KDOMDocument();
     $this->_doc->load($this->_xmlFile);
 }
Example #4
0
 /**
  * Constructor.
  * @param string $xmlPath path to schema xml.
  * @link http://www.kaltura.com/api_v3/api_schema.php
  */
 function __construct($xmlPath, Zend_Config $config, $sourcePath = "sources/js")
 {
     parent::__construct($xmlPath, $sourcePath, $config);
 }