MDL-27856 coding style cleanup

This commit is contained in:
Petr Škoda 2012-09-02 11:00:01 +02:00
parent 94335e5a97
commit e7193380d8
12 changed files with 56 additions and 76 deletions

View file

@ -36,7 +36,7 @@ $capabilities = array(
)
),
/* This is used only when sync suspends users instead of full unenrolment */
/* This is used only when sync suspends users instead of full unenrolment. */
'enrol/cohort:unenrol' => array(
'captype' => 'write',
@ -47,8 +47,3 @@ $capabilities = array(
),
);

View file

@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die();
/* List of handlers */
/* List of handlers. */
$handlers = array (
'cohort_member_added' => array (
'handlerfile' => '/enrol/cohort/locallib.php',

View file

@ -17,8 +17,7 @@
/**
* Meta link enrolment plugin uninstallation.
*
* @package enrol
* @subpackage cohort
* @package enrol_cohort
* @copyright 2011 Petr Skoda {@link http://skodak.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
@ -38,4 +37,4 @@ function xmldb_enrol_cohort_uninstall() {
role_unassign_all(array('component'=>'enrol_cohort'));
return true;
}
}