web service MDL-12886 remove moodleexternal.php from the lib folder
authorjerome <jerome>
Tue, 24 Feb 2009 08:27:07 +0000 (08:27 +0000)
committerjerome <jerome>
Tue, 24 Feb 2009 08:27:07 +0000 (08:27 +0000)
lib/moodleexternal.php [deleted file]

diff --git a/lib/moodleexternal.php b/lib/moodleexternal.php
deleted file mode 100644 (file)
index a9a6925..0000000
+++ /dev/null
@@ -1,47 +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_external {
-
- protected $descriptions;
-
-    /**
-     * Constructor - We set the description of this API in order to be access by Web service
-     */
-    function __construct () {
-        $this->descriptions = array();
-    }
-
-     /**
-     *
-     *  @param string $functionname
-     *  @return array
-     */
-    public function get_function_webservice_description($functionname) {
-        if (key_exists($functionname, $this->descriptions)) {
-            return $this->descriptions[$functionname];
-        }
-        else {
-            return false;
-        }
-    }
-
-    /**
-     *
-     * @return array
-     */
-    public function get_descriptions() {
-        return $this->descriptions;
-    }
-
-}
-?>