From 31ac2aef26c7b2883679fe99fbd65bc9bfb8265e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20S=CC=8Ckoda?= Date: Sat, 27 Apr 2013 13:41:32 +0200 Subject: [PATCH] MDL-39386 fix phpdocs packages in enrol --- enrol/ajax.php | 3 +- enrol/authorize/authorizenet.class.php | 3 +- enrol/authorize/db/upgrade.php | 41 ++++++++++--------- enrol/authorize/enrol_form.php | 4 +- enrol/authorize/import_form.php | 4 +- enrol/authorize/index.php | 4 +- enrol/authorize/lang/en/enrol_authorize.php | 3 +- enrol/authorize/localfuncs.php | 3 +- enrol/authorize/locallib.php | 3 +- enrol/authorize/uploadcsv.php | 3 +- enrol/authorize/version.php | 3 +- enrol/bulkchange.php | 3 +- enrol/bulkchange_forms.php | 4 +- enrol/cohort/lang/en/enrol_cohort.php | 2 +- enrol/guest/addinstance.php | 3 +- enrol/guest/db/upgrade.php | 5 +-- enrol/guest/lang/en/enrol_guest.php | 6 +-- enrol/guest/lib.php | 3 +- enrol/guest/locallib.php | 3 +- enrol/guest/settings.php | 3 +- enrol/guest/version.php | 3 +- enrol/imsenterprise/db/install.php | 3 +- enrol/imsenterprise/db/upgrade.php | 3 +- .../lang/en/enrol_imsenterprise.php | 6 +-- enrol/imsenterprise/lib.php | 3 +- enrol/imsenterprise/locallib.php | 4 +- enrol/imsenterprise/settings.php | 4 +- enrol/imsenterprise/version.php | 3 +- enrol/index.php | 4 +- enrol/instances.php | 3 +- enrol/ldap/cli/sync.php | 4 +- enrol/ldap/db/install.php | 4 +- enrol/ldap/lang/en/enrol_ldap.php | 6 +-- enrol/ldap/lib.php | 4 +- enrol/ldap/settings.php | 4 +- enrol/ldap/settingslib.php | 4 +- enrol/ldap/version.php | 3 +- enrol/locallib.php | 4 +- enrol/manual/db/services.php | 1 - enrol/meta/addinstance.php | 4 +- enrol/meta/addinstance_form.php | 3 +- enrol/meta/cli/sync.php | 3 +- enrol/meta/db/install.php | 4 +- enrol/meta/db/uninstall.php | 3 +- enrol/meta/lang/en/enrol_meta.php | 6 +-- enrol/meta/lib.php | 3 +- enrol/meta/locallib.php | 3 +- enrol/meta/settings.php | 3 +- enrol/meta/version.php | 3 +- enrol/mnet/addinstance.php | 4 +- enrol/mnet/addinstance_form.php | 4 +- enrol/mnet/db/mnet.php | 3 +- enrol/mnet/db/upgrade.php | 3 +- enrol/mnet/enrol.php | 4 +- enrol/mnet/lang/en/enrol_mnet.php | 6 +-- enrol/mnet/lib.php | 4 +- enrol/mnet/settings.php | 4 +- enrol/mnet/version.php | 3 +- enrol/otherusers.php | 3 +- enrol/paypal/db/upgrade.php | 3 +- enrol/paypal/edit.php | 4 +- enrol/paypal/edit_form.php | 4 +- enrol/paypal/ipn.php | 3 +- enrol/paypal/lang/en/enrol_paypal.php | 6 +-- enrol/paypal/lib.php | 3 +- enrol/paypal/return.php | 5 +-- enrol/paypal/settings.php | 4 +- enrol/paypal/unenrolself.php | 4 +- enrol/paypal/version.php | 3 +- enrol/renderer.php | 4 +- enrol/tests/enrollib_test.php | 2 +- enrol/unenroluser.php | 3 +- enrol/users.php | 3 +- enrol/users_forms.php | 4 +- 74 files changed, 101 insertions(+), 203 deletions(-) diff --git a/enrol/ajax.php b/enrol/ajax.php index f49c1dca32b..2d41a9892c1 100644 --- a/enrol/ajax.php +++ b/enrol/ajax.php @@ -20,8 +20,7 @@ * The general idea behind this file is that any errors should throw exceptions * which will be returned and acted upon by the calling AJAX script. * - * @package core - * @subpackage enrol + * @package core_enrol * @copyright 2010 Sam Hemelryk * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/authorize/authorizenet.class.php b/enrol/authorize/authorizenet.class.php index 08fb8e527cd..299eda081d4 100644 --- a/enrol/authorize/authorizenet.class.php +++ b/enrol/authorize/authorizenet.class.php @@ -19,8 +19,7 @@ * * This plugin allows you to set up paid courses, using authorize.net. * - * @package enrol - * @subpackage authorize + * @package enrol_authorize * @copyright 2010 Eugene Venter * @author Eugene Venter * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/authorize/db/upgrade.php b/enrol/authorize/db/upgrade.php index c369c8f190f..d8a2a5ccba3 100644 --- a/enrol/authorize/db/upgrade.php +++ b/enrol/authorize/db/upgrade.php @@ -1,24 +1,27 @@ . -// This file keeps track of upgrades to -// the authorize enrol plugin -// -// Sometimes, changes between versions involve -// alterations to database structures and other -// major things that may break installations. -// -// The upgrade function in this file will attempt -// to perform all the necessary actions to upgrade -// your older installation to the current version. -// -// If there's something it cannot do itself, it -// will tell you what you need to do. -// -// The commands in here will all be database-neutral, -// using the methods of database_manager class -// -// Please do not forget to use upgrade_set_timeout() -// before any action that may take longer time to finish. +/** + * Authorize.Net enrolment plugin upgrades. + * + * @package enrol_authorize + * @copyright 2006 Eugene Venter + * @author Eugene Venter + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ function xmldb_enrol_authorize_upgrade($oldversion) { global $CFG, $DB; diff --git a/enrol/authorize/enrol_form.php b/enrol/authorize/enrol_form.php index 04911b9cfe2..49136dae50d 100644 --- a/enrol/authorize/enrol_form.php +++ b/enrol/authorize/enrol_form.php @@ -1,5 +1,4 @@ . /** - * Strings for component 'enrol_authorize', language 'en', branch 'MOODLE_20_STABLE' + * Strings for component 'enrol_authorize', language 'en'. * * @package enrol_authorize * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} diff --git a/enrol/authorize/localfuncs.php b/enrol/authorize/localfuncs.php index f6b2935329d..473af614962 100644 --- a/enrol/authorize/localfuncs.php +++ b/enrol/authorize/localfuncs.php @@ -19,8 +19,7 @@ * * This plugin allows you to set up paid courses, using authorize.net. * - * @package enrol - * @subpackage authorize + * @package enrol_authorize * @copyright 2010 Eugene Venter * @author Eugene Venter * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/authorize/locallib.php b/enrol/authorize/locallib.php index 36ea35a5d41..b44c727d2b3 100644 --- a/enrol/authorize/locallib.php +++ b/enrol/authorize/locallib.php @@ -19,8 +19,7 @@ * * This plugin allows you to set up paid courses, using authorize.net. * - * @package enrol - * @subpackage authorize + * @package enrol_authorize * @copyright 2010 Eugene Venter * @author Eugene Venter * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/authorize/uploadcsv.php b/enrol/authorize/uploadcsv.php index d21cfb9a5d1..9c62501ef61 100644 --- a/enrol/authorize/uploadcsv.php +++ b/enrol/authorize/uploadcsv.php @@ -17,8 +17,7 @@ /** * Authorize.Net enrolment plugin - support for user self unenrolment. * - * @package enrol - * @subpackage authorize + * @package enrol_authorize * @copyright 2010 Eugene Venter * @author Eugene Venter * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/authorize/version.php b/enrol/authorize/version.php index 69c456cebd5..08fade1ecfb 100644 --- a/enrol/authorize/version.php +++ b/enrol/authorize/version.php @@ -17,8 +17,7 @@ /** * Authorize.Net enrolment plugin version specification. * - * @package enrol - * @subpackage authorize + * @package enrol_authorize * @copyright 2010 Eugene Venter * @author Eugene Venter * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/bulkchange.php b/enrol/bulkchange.php index 11c0324b3ab..1d451ae2098 100644 --- a/enrol/bulkchange.php +++ b/enrol/bulkchange.php @@ -17,8 +17,7 @@ /** * Bulk user enrolment processing. * - * @package core - * @subpackage enrol + * @package core_enrol * @copyright 2011 Sam Hemelryk * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/bulkchange_forms.php b/enrol/bulkchange_forms.php index 65e6152b204..2c54b1c1a03 100644 --- a/enrol/bulkchange_forms.php +++ b/enrol/bulkchange_forms.php @@ -1,5 +1,4 @@ . /** - * Strings for component 'enrol_cohort', language 'en' + * Strings for component 'enrol_cohort', language 'en'. * * @package enrol_cohort * @copyright 2010 Petr Skoda {@link http://skodak.org} diff --git a/enrol/guest/addinstance.php b/enrol/guest/addinstance.php index ce196320ae8..faa0531a4c2 100644 --- a/enrol/guest/addinstance.php +++ b/enrol/guest/addinstance.php @@ -17,8 +17,7 @@ /** * Adds new instance of enrol_guest to specified course. * - * @package enrol - * @subpackage guest + * @package enrol_guest * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/guest/db/upgrade.php b/enrol/guest/db/upgrade.php index 9769069918d..cb10d30f37f 100644 --- a/enrol/guest/db/upgrade.php +++ b/enrol/guest/db/upgrade.php @@ -15,10 +15,9 @@ // along with Moodle. If not, see . /** - * This file keeps track of upgrades to the guest enrolment plugin + * This file keeps track of upgrades to the guest enrolment plugin. * - * @package enrol - * @subpackage guest + * @package enrol_guest * @copyright 2011 Petr Skoda {@link http://skodak.org * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/guest/lang/en/enrol_guest.php b/enrol/guest/lang/en/enrol_guest.php index 8b0bd2d65c2..606def815cd 100644 --- a/enrol/guest/lang/en/enrol_guest.php +++ b/enrol/guest/lang/en/enrol_guest.php @@ -1,5 +1,4 @@ . /** - * Strings for component 'enrol_guest', language 'en', branch 'MOODLE_20_STABLE' + * Strings for component 'enrol_guest', language 'en'. * - * @package enrol - * @subpackage guest + * @package enrol_guest * @copyright 2010 onwards Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/guest/lib.php b/enrol/guest/lib.php index acd2536e390..9d3782460dd 100644 --- a/enrol/guest/lib.php +++ b/enrol/guest/lib.php @@ -20,8 +20,7 @@ * This plugin does not add any entries into the user_enrolments table, * the access control is granted on the fly via the tricks in require_login(). * - * @package enrol - * @subpackage guest + * @package enrol_guest * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/guest/locallib.php b/enrol/guest/locallib.php index 6182070dccc..14e13a92fb4 100644 --- a/enrol/guest/locallib.php +++ b/enrol/guest/locallib.php @@ -17,8 +17,7 @@ /** * Guest access plugin implementation. * - * @package enrol - * @subpackage guest + * @package enrol_guest * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/guest/settings.php b/enrol/guest/settings.php index a9376cb0cc2..56de6f691d7 100644 --- a/enrol/guest/settings.php +++ b/enrol/guest/settings.php @@ -17,8 +17,7 @@ /** * Guest access plugin settings and presets. * - * @package enrol - * @subpackage guest + * @package enrol_guest * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/guest/version.php b/enrol/guest/version.php index 1260ae64974..530a739f476 100644 --- a/enrol/guest/version.php +++ b/enrol/guest/version.php @@ -17,8 +17,7 @@ /** * Guest access plugin version specification. * - * @package enrol - * @subpackage guest + * @package enrol_guest * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/imsenterprise/db/install.php b/enrol/imsenterprise/db/install.php index 5ce41bcc155..db69d201005 100644 --- a/enrol/imsenterprise/db/install.php +++ b/enrol/imsenterprise/db/install.php @@ -17,8 +17,7 @@ /** * imsenterprise enrolment plugin installation. * - * @package enrol - * @subpackage imsenterprise + * @package enrol_imsenterprise * @copyright 2011 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/imsenterprise/db/upgrade.php b/enrol/imsenterprise/db/upgrade.php index 384a74d6065..9ad1c353483 100644 --- a/enrol/imsenterprise/db/upgrade.php +++ b/enrol/imsenterprise/db/upgrade.php @@ -17,8 +17,7 @@ /** * This file keeps track of upgrades to the imsenterprise enrolment plugin * - * @package enrol - * @subpackage imsenterprise + * @package enrol_imsenterprise * @copyright 2011 Petr Skoda {@link http://skodak.org * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/imsenterprise/lang/en/enrol_imsenterprise.php b/enrol/imsenterprise/lang/en/enrol_imsenterprise.php index 511ac821fce..8564667f69e 100644 --- a/enrol/imsenterprise/lang/en/enrol_imsenterprise.php +++ b/enrol/imsenterprise/lang/en/enrol_imsenterprise.php @@ -1,5 +1,4 @@ . /** - * Strings for component 'enrol_imsenterprise', language 'en', branch 'MOODLE_20_STABLE' + * Strings for component 'enrol_imsenterprise', language 'en'. * - * @package enrol - * @subpackage imsenterprise + * @package enrol_imsenterprise * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/imsenterprise/lib.php b/enrol/imsenterprise/lib.php index 970a1a7cd83..258f2cefee3 100644 --- a/enrol/imsenterprise/lib.php +++ b/enrol/imsenterprise/lib.php @@ -20,8 +20,7 @@ * This plugin lets the user specify an IMS Enterprise file to be processed. * The IMS Enterprise file is mainly parsed on a regular cron, * but can also be imported via the UI (Admin Settings). - * @package enrol - * @subpackage imsenterprise + * @package enrol_imsenterprise * @copyright 2010 Eugene Venter * @author Eugene Venter - based on code by Dan Stowell * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/imsenterprise/locallib.php b/enrol/imsenterprise/locallib.php index 921bb306ba6..f203dc89184 100644 --- a/enrol/imsenterprise/locallib.php +++ b/enrol/imsenterprise/locallib.php @@ -1,5 +1,4 @@ diff --git a/enrol/ldap/db/install.php b/enrol/ldap/db/install.php index ad0b9b756ad..485666602ec 100644 --- a/enrol/ldap/db/install.php +++ b/enrol/ldap/db/install.php @@ -1,5 +1,4 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/ldap/lang/en/enrol_ldap.php b/enrol/ldap/lang/en/enrol_ldap.php index a54e35e71c9..f6ec711cd36 100644 --- a/enrol/ldap/lang/en/enrol_ldap.php +++ b/enrol/ldap/lang/en/enrol_ldap.php @@ -1,5 +1,4 @@ . /** - * Strings for component 'enrol_ldap', language 'en', branch 'MOODLE_20_STABLE' + * Strings for component 'enrol_ldap', language 'en'. * - * @package enrol - * @subpackage ldap + * @package enrol_ldap * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} * @copyright 2010 Iñaki Arenaza * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/ldap/lib.php b/enrol/ldap/lib.php index 3a1cb0fb434..a4448c76544 100644 --- a/enrol/ldap/lib.php +++ b/enrol/ldap/lib.php @@ -1,5 +1,4 @@ diff --git a/enrol/ldap/settings.php b/enrol/ldap/settings.php index c27ea279fdf..a0838622932 100644 --- a/enrol/ldap/settings.php +++ b/enrol/ldap/settings.php @@ -1,5 +1,4 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/ldap/settingslib.php b/enrol/ldap/settingslib.php index 9b1c4fbc123..c090c2c8d53 100644 --- a/enrol/ldap/settingslib.php +++ b/enrol/ldap/settingslib.php @@ -1,5 +1,4 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/ldap/version.php b/enrol/ldap/version.php index 98039982d4f..e4ccf88c4c0 100644 --- a/enrol/ldap/version.php +++ b/enrol/ldap/version.php @@ -17,8 +17,7 @@ /** * LDAP enrolment plugin version specification. * - * @package enrol - * @subpackage ldap + * @package enrol_ldap * @author Iñaki Arenaza * @copyright 2010 Iñaki Arenaza * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/locallib.php b/enrol/locallib.php index e4ece1e672b..a2039da679e 100644 --- a/enrol/locallib.php +++ b/enrol/locallib.php @@ -1,5 +1,4 @@ . - /** * Manual plugin external functions and service definitions. * diff --git a/enrol/meta/addinstance.php b/enrol/meta/addinstance.php index b1bd857a7c1..ac2f2ff3cec 100644 --- a/enrol/meta/addinstance.php +++ b/enrol/meta/addinstance.php @@ -1,5 +1,4 @@ . /** - * Strings for component 'enrol_meta', language 'en', branch 'MOODLE_20_STABLE' + * Strings for component 'enrol_meta', language 'en'. * - * @package enrol - * @subpackage meta + * @package enrol_meta * @copyright 2010 onwards Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/meta/lib.php b/enrol/meta/lib.php index 10f277bf138..2babc8a7059 100644 --- a/enrol/meta/lib.php +++ b/enrol/meta/lib.php @@ -17,8 +17,7 @@ /** * Meta course enrolment plugin. * - * @package enrol - * @subpackage meta + * @package enrol_meta * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/meta/locallib.php b/enrol/meta/locallib.php index 3d16b0e2414..5bfa2002d21 100644 --- a/enrol/meta/locallib.php +++ b/enrol/meta/locallib.php @@ -17,8 +17,7 @@ /** * Local stuff for meta course enrolment plugin. * - * @package enrol - * @subpackage meta + * @package enrol_meta * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/meta/settings.php b/enrol/meta/settings.php index b80f93b1071..d2f5d935510 100644 --- a/enrol/meta/settings.php +++ b/enrol/meta/settings.php @@ -17,8 +17,7 @@ /** * Meta enrolment plugin settings and presets. * - * @package enrol - * @subpackage meta + * @package enrol_meta * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/meta/version.php b/enrol/meta/version.php index a641b63976d..79d104e347b 100644 --- a/enrol/meta/version.php +++ b/enrol/meta/version.php @@ -17,8 +17,7 @@ /** * Meta link enrolment plugin version specification. * - * @package enrol - * @subpackage meta + * @package enrol_meta * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/addinstance.php b/enrol/mnet/addinstance.php index b7d75f4a423..9678b400bf5 100644 --- a/enrol/mnet/addinstance.php +++ b/enrol/mnet/addinstance.php @@ -1,5 +1,4 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/addinstance_form.php b/enrol/mnet/addinstance_form.php index e6d13d12a82..436e92b0cf4 100644 --- a/enrol/mnet/addinstance_form.php +++ b/enrol/mnet/addinstance_form.php @@ -1,5 +1,4 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/db/mnet.php b/enrol/mnet/db/mnet.php index 495575b735a..01ad3abe1b1 100644 --- a/enrol/mnet/db/mnet.php +++ b/enrol/mnet/db/mnet.php @@ -21,8 +21,7 @@ * just a declaration of xml-rpc methods that this plugin publishes. * * @since 2.0 - * @package enrol - * @subpackage mnet + * @package enrol_mnet * @copyright 2010 Penny Leach * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/db/upgrade.php b/enrol/mnet/db/upgrade.php index 76a1a325674..0d149155edd 100644 --- a/enrol/mnet/db/upgrade.php +++ b/enrol/mnet/db/upgrade.php @@ -18,8 +18,7 @@ /** * Keeps track of upgrades to the enrol_mnet plugin * - * @package enrol - * @subpackage mnet + * @package enrol_mnet * @copyright 2010 David Mudrak * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/enrol.php b/enrol/mnet/enrol.php index 63966193804..78fd0b84762 100644 --- a/enrol/mnet/enrol.php +++ b/enrol/mnet/enrol.php @@ -1,5 +1,4 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/lang/en/enrol_mnet.php b/enrol/mnet/lang/en/enrol_mnet.php index 9a98ed9db30..9f086d1f170 100644 --- a/enrol/mnet/lang/en/enrol_mnet.php +++ b/enrol/mnet/lang/en/enrol_mnet.php @@ -1,5 +1,4 @@ . /** - * English strings for MNet enrolment plugin + * English strings for MNet enrolment plugin. * - * @package enrol - * @subpackage mnet + * @package enrol_mnet * @copyright 2010 David Mudrak * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/lib.php b/enrol/mnet/lib.php index 0a507293f71..28578a26c0a 100644 --- a/enrol/mnet/lib.php +++ b/enrol/mnet/lib.php @@ -1,5 +1,4 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/settings.php b/enrol/mnet/settings.php index fc022046dd0..fc7517faa89 100644 --- a/enrol/mnet/settings.php +++ b/enrol/mnet/settings.php @@ -1,5 +1,4 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/mnet/version.php b/enrol/mnet/version.php index af325f9a771..76782204e53 100644 --- a/enrol/mnet/version.php +++ b/enrol/mnet/version.php @@ -17,8 +17,7 @@ /** * MNet enrolment plugin version specification. * - * @package enrol - * @subpackage mnet + * @package enrol_mnet * @copyright 2010 David Mudrak * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/otherusers.php b/enrol/otherusers.php index 4decf202765..063d5b4ec04 100644 --- a/enrol/otherusers.php +++ b/enrol/otherusers.php @@ -17,8 +17,7 @@ /** * List and modify users that are not enrolled but still have a role in course. * - * @package core - * @subpackage enrol + * @package core_enrol * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/paypal/db/upgrade.php b/enrol/paypal/db/upgrade.php index 279dc974d86..01200081adf 100644 --- a/enrol/paypal/db/upgrade.php +++ b/enrol/paypal/db/upgrade.php @@ -17,8 +17,7 @@ /** * This file keeps track of upgrades to the paypal enrolment plugin * - * @package enrol - * @subpackage paypal + * @package enrol_paypal * @copyright 2010 Eugene Venter * @author Eugene Venter * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later diff --git a/enrol/paypal/edit.php b/enrol/paypal/edit.php index 081beb4195e..8955cb7d812 100644 --- a/enrol/paypal/edit.php +++ b/enrol/paypal/edit.php @@ -1,5 +1,4 @@ . /** - * Strings for component 'enrol_paypal', language 'en', branch 'MOODLE_20_STABLE' + * Strings for component 'enrol_paypal', language 'en'. * - * @package enrol - * @subpackage paypal + * @package enrol_paypal * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/paypal/lib.php b/enrol/paypal/lib.php index b79dbe119f5..ef458599618 100644 --- a/enrol/paypal/lib.php +++ b/enrol/paypal/lib.php @@ -19,8 +19,7 @@ * * This plugin allows you to set up paid courses. * - * @package enrol - * @subpackage paypal + * @package enrol_paypal * @copyright 2010 Eugene Venter * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/enrol/paypal/return.php b/enrol/paypal/return.php index e8a5c847695..6ee4f5e3166 100644 --- a/enrol/paypal/return.php +++ b/enrol/paypal/return.php @@ -1,5 +1,4 @@