| [ Index ] |
|
Code source de LifeType 1.2.4 |
1 <?php 2 3 lt_include( PLOG_CLASS_PATH."class/action/admin/adminaction.class.php" ); 4 lt_include( PLOG_CLASS_PATH."class/view/admin/adminxmlview.class.php" ); 5 6 /** 7 * \ingroup Action 8 * @private 9 */ 10 class AdminXmlPingAction extends AdminAction 11 { 12 13 function AdminXmlPingAction( $actionInfo, $request ) 14 { 15 $this->AdminAction( $request, $actionInfo ); 16 } 17 18 function perform() 19 { 20 $this->_view = new AdminXmlView( $this->_blogInfo, "response" ); 21 $this->_view->setValue( "method", "sessionPing" ); 22 $this->_view->setValue( "result", "OK" ); 23 24 return true; 25 } 26 } 27 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Mon Nov 26 21:04:15 2007 | par Balluche grâce à PHPXref 0.7 |
|