From: jerome Date: Thu, 22 Jan 2009 05:25:37 +0000 (+0000) Subject: web service MDL-12886 rename moodlewsapi.php into moodleexternal.php X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=5e9d857e97de89dc02843e57692f09aa1a55c1b7;p=moodle.git web service MDL-12886 rename moodlewsapi.php into moodleexternal.php --- diff --git a/lib/moodlewsapi.php b/lib/moodlewsapi.php deleted file mode 100644 index e80cf5a0fa..0000000000 --- a/lib/moodlewsapi.php +++ /dev/null @@ -1,43 +0,0 @@ -descriptions = array(); - - } - - /** - * - * @param $functionname - */ - function get_function_webservice_description($functionname) { - if (key_exists($functionname, $this->descriptions)) { - return $this->descriptions[$functionname]; - } - else { - return false; - } - } - - function get_descriptions() { - return $this->descriptions; - } - -} -?>