mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-24 00:31:07 +00:00
54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<?php
|
|
|
|
if (!defined('UPDRAFTCENTRAL_CLIENT_DIR')) die('No access.');
|
|
|
|
/**
|
|
* - A container for all the RPC commands implemented. Commands map exactly onto method names (and hence this class should not implement anything else, beyond the constructor, and private methods)
|
|
* - Return format is array('response' => (string - a code), 'data' => (mixed));
|
|
*
|
|
* RPC commands are not allowed to begin with an underscore. So, any private methods can be prefixed with an underscore.
|
|
*/
|
|
abstract class UpdraftCentral_Commands {
|
|
|
|
protected $rc;
|
|
|
|
protected $ud;
|
|
|
|
public function __construct($rc) {
|
|
$this->rc = $rc;
|
|
global $updraftplus;
|
|
$this->ud = $updraftplus;
|
|
}
|
|
|
|
final protected function _admin_include() {
|
|
$files = func_get_args();
|
|
foreach ($files as $file) {
|
|
include_once(ABSPATH.'/wp-admin/includes/'.$file);
|
|
}
|
|
}
|
|
|
|
final protected function _frontend_include() {
|
|
$files = func_get_args();
|
|
foreach ($files as $file) {
|
|
include_once(ABSPATH.WPINC.'/'.$file);
|
|
}
|
|
}
|
|
|
|
final protected function _response($data = null, $code = 'rpcok') {
|
|
return array(
|
|
'response' => $code,
|
|
'data' => $data
|
|
);
|
|
}
|
|
|
|
final protected function _generic_error_response($code = 'central_unspecified', $data = null) {
|
|
return $this->_response(
|
|
array(
|
|
'code' => $code,
|
|
'data' => $data
|
|
),
|
|
'rpcerror'
|
|
);
|
|
}
|
|
}
|