Skip to content
Snippets Groups Projects
Commit 2eb5a0d9 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms Committed by Jan-Hendrik Willms
Browse files

make class ContentModule and method readData abstract (and fix constructor...

Closes #1252

Merge request studip/studip!767
parent 5a8ce512
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,13 @@
* @module ContentModule
* @package ELearning-Interface
*/
class ContentModule
abstract class ContentModule
{
/**
* Fetches data from conencted cms.
*/
abstract function readData();
var $id;
var $title;
var $module_type;
......@@ -41,7 +46,7 @@ class ContentModule
* @param string $module_type module-type
* @param string $cms_type system-type
*/
function __construct($module_id = "", $module_type, $cms_type)
function __construct($module_id, $module_type, $cms_type)
{
global $connected_cms;
......
......@@ -28,7 +28,7 @@ class Ilias3ContentModule extends ContentModule
* @param string $module_type module-type
* @param string $cms_type system-type
*/
function __construct($module_id = "", $module_type, $cms_type)
function __construct($module_id, $module_type, $cms_type)
{
parent::__construct($module_id, $module_type, $cms_type);
if ($module_id != "")
......
......@@ -25,7 +25,7 @@ class LonCapaContentModule extends ContentModule
* @param string $module_type
* @param string $cms_type
*/
public function __construct($module_id = "", $module_type, $cms_type)
public function __construct($module_id, $module_type, $cms_type)
{
$this->lcRequest = new LonCapaRequest();
$this->cmsUrl = $GLOBALS['ELEARNING_INTERFACE_MODULES'][$cms_type]['ABSOLUTE_PATH_ELEARNINGMODULES'];
......
......@@ -17,7 +17,7 @@
/**
*
* This class contains methods to handle PmWiki learning modules
* This class contains methods to handle PmWiki learning modules
*
* @author Marco Diedrich <mdiedric@uos.de>
* @access public
......@@ -32,19 +32,19 @@ class PmWikiContentModule extends ContentModule
/**
* constructor
*
* init class.
* init class.
* @access public
* @param string $module_id module-id
* @param string $module_type module-type
* @param string $cms_type system-type
*/
*/
function __construct($module_id = "", $module_type, $cms_type)
function __construct($module_id, $module_type, $cms_type)
{
parent::__construct($module_id, $module_type, $cms_type);
$this->link = $GLOBALS['connected_cms'][$this->cms_type]->ABSOLUTE_PATH_ELEARNINGMODULES.$this->id."/";
$this->client = WebserviceClient::instance( $this->link. '?' .
$GLOBALS['ELEARNING_INTERFACE_MODULES'][$this->cms_type]['URL_PARAMS'],
$this->client = WebserviceClient::instance( $this->link. '?' .
$GLOBALS['ELEARNING_INTERFACE_MODULES'][$this->cms_type]['URL_PARAMS'],
$GLOBALS['ELEARNING_INTERFACE_MODULES'][$this->cms_type]['WEBSERVICE_CLASS']);
}
......@@ -98,7 +98,7 @@ class PmWikiContentModule extends ContentModule
if ($authorized)
{
return true;
} else
} else
{
# old authorization
if (is_array($this->accepted_users) && in_array($username, $this->accepted_users))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment