📄 adminxmlpingaction.class.php
字号:
<?php lt_include( PLOG_CLASS_PATH."class/action/admin/adminaction.class.php" ); lt_include( PLOG_CLASS_PATH."class/view/admin/adminxmlview.class.php" ); /** * \ingroup Action * @private */ class AdminXmlPingAction extends AdminAction { function AdminXmlPingAction( $actionInfo, $request ) { $this->AdminAction( $request, $actionInfo ); } function perform() { $this->_view = new AdminXmlView( $this->_blogInfo, "response" ); $this->_view->setValue( "method", "sessionPing" ); $this->_view->setValue( "result", "OK" ); return true; } }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -