Overview

Packages

  • ClipIt
    • clipit
      • api
    • urjc
      • backend
  • Elgg
    • Core
      • Access
      • Authentication
      • Cache
      • Caches
      • Core
      • DataMode
        • Site
      • DataModel
        • Annotations
        • Entities
        • Extender
        • File
        • Importable
        • Loggable
        • Notable
        • Object
        • User
      • DataStorage
      • Exception
      • Exceptions
        • Stub
      • FileStore
        • Disk
      • Groups
      • Helpers
      • HMAC
      • Memcache
      • Metadata
      • Navigation
      • ODD
      • Output
      • Plugins
        • Settings
      • Sessions
      • SocialModel
        • Friendable
        • Locatable
      • WebServicesAPI
      • Widgets
      • XML
      • XMLRPC
    • Exceptions
      • Stub
  • None
  • PHP

Classes

  • XMLRPCArrayParameter
  • XMLRPCBase64Parameter
  • XMLRPCBoolParameter
  • XMLRPCCall
  • XMLRPCDateParameter
  • XMLRPCDoubleParameter
  • XMLRPCErrorResponse
  • XMLRPCIntParameter
  • XMLRPCParameter
  • XMLRPCResponse
  • XMLRPCStringParameter
  • XMLRPCStructParameter
  • XMLRPCSuccessResponse
  • Overview
  • Package
  • Class
  • Tree
 1: <?php
 2: /**
 3:  * Success Response
 4:  *
 5:  * @package    Elgg.Core
 6:  * @subpackage XMLRPC
 7:  */
 8: class XMLRPCSuccessResponse extends XMLRPCResponse {
 9:     /**
10:      * Output to XML.
11:      *
12:      * @return string
13:      */
14:     public function __toString() {
15:         $params = "";
16:         foreach ($this->parameters as $param) {
17:             $params .= "<param>$param</param>\n";
18:         }
19: 
20:         return "<methodResponse><params>$params</params></methodResponse>";
21:     }
22: }
23: 
API documentation generated by ApiGen 2.8.0