1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?php
# -- BEGIN LICENSE BLOCK ---------------------------------------
#
# This file is part of Dotclear 2.
#
# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
# Licensed under the GPL version 2.0 license.
# See LICENSE file or
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK -----------------------------------------
if (!defined('DC_RC_PATH')) { return; }
/**
@ingroup DC_CORE
@brief Dotclear REST server extension
This class extends restServer to handle dcCore instance in each rest method call.
Instance of this class is provided by dcCore $rest.
*/
class dcRestServer extends restServer
{
public $core; ///< dcCore instance
/**
Object constructor.
@param core <b>dcCore</b> dcCore instance
*/
public function __construct($core)
{
parent::__construct();
$this->core =& $core;
}
/**
Rest method call.
@param name <b>string</b> Method name
@param get <b>array</b> GET parameters copy
@param post <b>array</b> POST parameters copy
@return <b>mixed</b> Rest method result
*/
protected function callFunction($name,$get,$post)
{
if (isset($this->functions[$name])) {
return call_user_func($this->functions[$name],$this->core,$get,$post);
}
}
}
|