Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/XmlRpc/Value/Scalar.php
Go to the documentation of this file.
00001 <?php
00027 require_once 'Zend/XmlRpc/Value.php';
00028 
00029 
00037 abstract class Zend_XmlRpc_Value_Scalar extends Zend_XmlRpc_Value
00038 {
00044     protected function _generateXml()
00045     {
00046         $generator = $this->getGenerator();
00047 
00048         $generator->openElement('value')
00049                   ->openElement($this->_type, $this->_value)
00050                   ->closeElement($this->_type)
00051                   ->closeElement('value');
00052     }
00053 }
 All Data Structures Namespaces Files Functions Variables Enumerations