MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
class.phpwsdlobject.php
Ir para a documentação deste ficheiro.
1<?php
2
3/*
4PhpWsdl - Generate WSDL from PHP
5Copyright (C) 2011 Andreas Zimmermann, wan24.de
6
7This program is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free Software
9Foundation; either version 3 of the License, or (at your option) any later
10version.
11
12This program is distributed in the hope that it will be useful, but WITHOUT
13ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License along with
17this program; if not, see <http://www.gnu.org/licenses/>.
18*/
19
20if(basename($_SERVER['SCRIPT_FILENAME'])==basename(__FILE__))
21 exit;
22
34 public $GUID;
40 public $Name;
46 public $Docs=null;
52 public $Settings=null;
53
60 public function PhpWsdlObject($name,$settings=null){
61 self::__construct($name, $settings);
62 }
63
64 public function __construct($name,$settings=null){
65 $this->GUID=uniqid();
66 PhpWsdl::Debug('New PhpWsdlObject "'.$name.'" with GUID "'.$this->GUID.'"');
67 $this->Name=$name;
68 if(!is_null($settings)){
69 if(isset($settings['docs']))
70 $this->Docs=$settings['docs'];
71 if(isset($settings['settings']))
72 $this->Settings=$settings['settings'];
73 }
74 }
75}
PhpWsdlObject($name, $settings=null)
__construct($name, $settings=null)
static Debug($str)