Changeset 6026 for trunk/wp-includes/class-IXR.php
- Timestamp:
- 09/03/2007 11:32:58 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-IXR.php
r5700 r6026 1 1 <?php 2 /* 2 /* 3 3 IXR - The Inutio XML-RPC Library - (c) Incutio Ltd 2002-2005 4 4 Version 1.7 (beta) - Simon Willison, 23rd May 2005 … … 255 255 } 256 256 $this->_currentTagContents = ''; 257 } 257 } 258 258 } 259 259 … … 380 380 'specVersion' => 1 381 381 ), 382 ); 382 ); 383 383 } 384 384 function getCapabilities($args) { … … 585 585 </value> 586 586 </fault> 587 </methodResponse> 587 </methodResponse> 588 588 589 589 EOD; … … 659 659 ); 660 660 $this->addCallback( 661 'system.methodSignature', 662 'this:methodSignature', 663 array('array', 'string'), 661 'system.methodSignature', 662 'this:methodSignature', 663 array('array', 'string'), 664 664 'Returns an array describing the return type and required parameters of a method' 665 665 ); 666 666 $this->addCallback( 667 'system.getCapabilities', 668 'this:getCapabilities', 669 array('struct'), 667 'system.getCapabilities', 668 'this:getCapabilities', 669 array('struct'), 670 670 'Returns a struct describing the XML-RPC specifications supported by this server' 671 671 ); 672 672 $this->addCallback( 673 'system.listMethods', 674 'this:listMethods', 675 array('array'), 673 'system.listMethods', 674 'this:listMethods', 675 array('array'), 676 676 'Returns an array of available methods on this server' 677 677 ); 678 678 $this->addCallback( 679 'system.methodHelp', 680 'this:methodHelp', 681 array('string', 'string'), 679 'system.methodHelp', 680 'this:methodHelp', 681 array('string', 'string'), 682 682 'Returns a documentation string for the specified method' 683 683 );
Note: See TracChangeset
for help on using the changeset viewer.