-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ELIS-8632 Code changes for migration to local plugin
- Loading branch information
1 parent
41670af
commit deb3120
Showing
246 changed files
with
5,758 additions
and
5,707 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?php | ||
/** | ||
* ELIS(TM): Enterprise Learning Intelligence Suite | ||
* Copyright (C) 2008-2013 Remote-Learner.net Inc (http://www.remote-learner.net) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* 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. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* @package local_datahub | ||
* @author Remote-Learner.net Inc | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
* @copyright (C) 2008-2013 Remote Learner.net Inc (http://www.remote-learner.net) | ||
* | ||
*/ | ||
|
||
namespace local_datahub\plugininfo; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
/** | ||
* This class defines dhexport subplugininfo | ||
*/ | ||
class dhexport extends \core\plugininfo\base { | ||
/** @var string the plugintype name, eg. mod, auth or workshopform */ | ||
public $type = 'local'; | ||
/** @var string full path to the location of all the plugins of this type */ | ||
public $typerootdir = '/local/datahub/dhexport/'; | ||
/** @var string the plugin name, eg. assignment, ldap */ | ||
public $name = 'eliscore'; | ||
/** @var string the localized plugin name */ | ||
public $displayname = 'Datahub export subplugins'; | ||
/** @var string the plugin source, one of core_plugin_manager::PLUGIN_SOURCE_xxx constants */ | ||
public $source; | ||
/** @var string fullpath to the location of this plugin */ | ||
public $rootdir; | ||
/** @var int|string the version of the plugin's source code */ | ||
public $versiondisk; | ||
/** @var int|string the version of the installed plugin */ | ||
public $versiondb; | ||
/** @var int|float|string required version of Moodle core */ | ||
public $versionrequires; | ||
/** @var mixed human-readable release information */ | ||
/** @var mixed human-readable release information */ | ||
public $release = '2.6.0.0'; | ||
/** @var array other plugins that this one depends on, lazy-loaded by {@link get_other_required_plugins()} */ | ||
public $dependencies; | ||
/** @var int number of instances of the plugin - not supported yet */ | ||
public $instances; | ||
/** @var int order of the plugin among other plugins of the same type - not supported yet */ | ||
public $sortorder; | ||
/** @var array|null array of {@link \core\update\info} for this plugin */ | ||
public $availableupdates; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
/** | ||
* ELIS(TM): Enterprise Learning Intelligence Suite | ||
* Copyright (C) 2008-2013 Remote-Learner.net Inc (http://www.remote-learner.net) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* 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. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* @package local_datahub | ||
* @author Remote-Learner.net Inc | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
* @copyright (C) 2008-2013 Remote Learner.net Inc (http://www.remote-learner.net) | ||
* | ||
*/ | ||
|
||
namespace local_datahub\plugininfo; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
/** | ||
* This class defines dhfile subplugininfo | ||
*/ | ||
class dhfile extends \core\plugininfo\base { | ||
/** @var string the plugintype name, eg. mod, auth or workshopform */ | ||
public $type = 'local'; | ||
/** @var string full path to the location of all the plugins of this type */ | ||
public $typerootdir = '/local/datahub/dhfile/'; | ||
/** @var string the plugin name, eg. assignment, ldap */ | ||
public $name = 'dhfile'; | ||
/** @var string the localized plugin name */ | ||
public $displayname = 'Datahub file subplugins'; | ||
/** @var string the plugin source, one of core_plugin_manager::PLUGIN_SOURCE_xxx constants */ | ||
public $source; | ||
/** @var string fullpath to the location of this plugin */ | ||
public $rootdir; | ||
/** @var int|string the version of the plugin's source code */ | ||
public $versiondisk; | ||
/** @var int|string the version of the installed plugin */ | ||
public $versiondb; | ||
/** @var int|float|string required version of Moodle core */ | ||
public $versionrequires; | ||
/** @var mixed human-readable release information */ | ||
public $release = '2.6.0.0'; | ||
/** @var array other plugins that this one depends on, lazy-loaded by {@link get_other_required_plugins()} */ | ||
public $dependencies; | ||
/** @var int number of instances of the plugin - not supported yet */ | ||
public $instances; | ||
/** @var int order of the plugin among other plugins of the same type - not supported yet */ | ||
public $sortorder; | ||
/** @var array|null array of {@link \core\update\info} for this plugin */ | ||
public $availableupdates; | ||
} |
Oops, something went wrong.