]> git.mjollnir.org Git - moodle.git/commitdiff
web service MDL-12886 rename moodlewsapi.php into moodleexternal.php
authorjerome <jerome>
Thu, 22 Jan 2009 05:25:37 +0000 (05:25 +0000)
committerjerome <jerome>
Thu, 22 Jan 2009 05:25:37 +0000 (05:25 +0000)
lib/moodlewsapi.php [deleted file]

diff --git a/lib/moodlewsapi.php b/lib/moodlewsapi.php
deleted file mode 100644 (file)
index e80cf5a..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-/* 
-* Created on 01/12/2008
- *
- * Moodle base webservice api
- *
- * @author Jerome Mouneyrac
- */
-
-/**
- * DO NOT USE ANYTHING FROM THIS FILE - WORK IN PROGRESS
- */
-abstract class moodle_ws_api {
-
- protected $descriptions;
-
-    /**
-     * Constructor - We set the description of this API in order to be access by Web service
-     */
-    function __construct () {
-          $this->descriptions = array();
-         
-    }
-
-     /**
-     *
-     *  @param <type> $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;
-    }
-
-}
-?>