Exemple #1
0
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details:
 *
 *         http://www.gnu.org/copyleft/gpl.html
 *
 * @category  Moodle
 * @package   webservice
 * @copyright Copyright (c) 1999 onwards Martin Dougiamas     http://dougiamas.com
 * @license   http://www.gnu.org/copyleft/gpl.html     GNU GPL License
 */
/**
 * Main script - XML-RPC server
 *
 * @author Jerome Mouneyrac <*****@*****.**>
 * @version 1.0
 * @package webservices
 */
/*
 * Zend XML-RPC server
 */
require_once dirname(__FILE__) . '/../../config.php';
require_once 'lib.php';
if (empty($CFG->enablewebservices)) {
    die;
}
$server = new xmlrpc_server();
$server->run();