[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 <?php 2 // 3 // $Id$ 4 // 5 // Definition of eZSOAPParameter class 6 // 7 // Created on: <28-Feb-2002 17:07:23 bf> 8 // 9 // SOFTWARE NAME: eZ publish 10 // SOFTWARE RELEASE: 3.9.0 11 // BUILD VERSION: 17785 12 // COPYRIGHT NOTICE: Copyright (C) 1999-2006 eZ systems AS 13 // SOFTWARE LICENSE: GNU General Public License v2.0 14 // NOTICE: > 15 // This program is free software; you can redistribute it and/or 16 // modify it under the terms of version 2.0 of the GNU General 17 // Public License as published by the Free Software Foundation. 18 // 19 // This program is distributed in the hope that it will be useful, 20 // but WITHOUT ANY WARRANTY; without even the implied warranty of 21 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 // GNU General Public License for more details. 23 // 24 // You should have received a copy of version 2.0 of the GNU General 25 // Public License along with this program; if not, write to the Free 26 // Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 27 // MA 02110-1301, USA. 28 // 29 // 30 31 //!! eZSOAP 32 //! eZSOAPParameter handles parameters to SOAP requests 33 /*! 34 \code 35 36 \endcode 37 */ 38 39 40 class eZSOAPParameter 41 { 42 /*! 43 Creates a new SOAP parameter object. 44 */ 45 function eZSOAPParameter( $name, $value) 46 { 47 $this->Name = $name; 48 $this->Value = $value; 49 } 50 51 /*! 52 Sets the parameter name. 53 */ 54 function setName( $name ) 55 { 56 $this->Name = $name; 57 } 58 59 /*! 60 Returns the parameter name. 61 */ 62 function name() 63 { 64 return $this->Name; 65 } 66 67 /*! 68 Sets the parameter value 69 */ 70 function setValue( $value ) 71 { 72 73 } 74 75 /*! 76 Returns the parameter value. 77 */ 78 function value() 79 { 80 return $this->Value; 81 } 82 83 /// The name of the parameter 84 var $Name; 85 86 /// The parameter value 87 var $Value; 88 } 89 90 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |