[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/enrol/self/ -> settings.php (source)

   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Self enrolment plugin settings and presets.
  19   *
  20   * @package    enrol_self
  21   * @copyright  2010 Petr Skoda  {@link http://skodak.org}
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  defined('MOODLE_INTERNAL') || die();
  26  
  27  if ($ADMIN->fulltree) {
  28  
  29      //--- general settings -----------------------------------------------------------------------------------
  30      $settings->add(new admin_setting_heading('enrol_self_settings', '', get_string('pluginname_desc', 'enrol_self')));
  31  
  32      $settings->add(new admin_setting_configcheckbox('enrol_self/requirepassword',
  33          get_string('requirepassword', 'enrol_self'), get_string('requirepassword_desc', 'enrol_self'), 0));
  34  
  35      $settings->add(new admin_setting_configcheckbox('enrol_self/usepasswordpolicy',
  36          get_string('usepasswordpolicy', 'enrol_self'), get_string('usepasswordpolicy_desc', 'enrol_self'), 0));
  37  
  38      $settings->add(new admin_setting_configcheckbox('enrol_self/showhint',
  39          get_string('showhint', 'enrol_self'), get_string('showhint_desc', 'enrol_self'), 0));
  40  
  41      // Note: let's reuse the ext sync constants and strings here, internally it is very similar,
  42      //       it describes what should happend when users are not supposed to be enerolled any more.
  43      $options = array(
  44          ENROL_EXT_REMOVED_KEEP           => get_string('extremovedkeep', 'enrol'),
  45          ENROL_EXT_REMOVED_SUSPENDNOROLES => get_string('extremovedsuspendnoroles', 'enrol'),
  46          ENROL_EXT_REMOVED_UNENROL        => get_string('extremovedunenrol', 'enrol'),
  47      );
  48      $settings->add(new admin_setting_configselect('enrol_self/expiredaction', get_string('expiredaction', 'enrol_self'), get_string('expiredaction_help', 'enrol_self'), ENROL_EXT_REMOVED_KEEP, $options));
  49  
  50      $options = array();
  51      for ($i=0; $i<24; $i++) {
  52          $options[$i] = $i;
  53      }
  54      $settings->add(new admin_setting_configselect('enrol_self/expirynotifyhour', get_string('expirynotifyhour', 'core_enrol'), '', 6, $options));
  55  
  56      //--- enrol instance defaults ----------------------------------------------------------------------------
  57      $settings->add(new admin_setting_heading('enrol_self_defaults',
  58          get_string('enrolinstancedefaults', 'admin'), get_string('enrolinstancedefaults_desc', 'admin')));
  59  
  60      $settings->add(new admin_setting_configcheckbox('enrol_self/defaultenrol',
  61          get_string('defaultenrol', 'enrol'), get_string('defaultenrol_desc', 'enrol'), 1));
  62  
  63      $options = array(ENROL_INSTANCE_ENABLED  => get_string('yes'),
  64                       ENROL_INSTANCE_DISABLED => get_string('no'));
  65      $settings->add(new admin_setting_configselect('enrol_self/status',
  66          get_string('status', 'enrol_self'), get_string('status_desc', 'enrol_self'), ENROL_INSTANCE_DISABLED, $options));
  67  
  68      $options = array(1  => get_string('yes'), 0 => get_string('no'));
  69      $settings->add(new admin_setting_configselect('enrol_self/newenrols',
  70          get_string('newenrols', 'enrol_self'), get_string('newenrols_desc', 'enrol_self'), 1, $options));
  71  
  72      $options = array(1  => get_string('yes'),
  73                       0 => get_string('no'));
  74      $settings->add(new admin_setting_configselect('enrol_self/groupkey',
  75          get_string('groupkey', 'enrol_self'), get_string('groupkey_desc', 'enrol_self'), 0, $options));
  76  
  77      if (!during_initial_install()) {
  78          $options = get_default_enrol_roles(context_system::instance());
  79          $student = get_archetype_roles('student');
  80          $student = reset($student);
  81          $settings->add(new admin_setting_configselect('enrol_self/roleid',
  82              get_string('defaultrole', 'enrol_self'), get_string('defaultrole_desc', 'enrol_self'), $student->id, $options));
  83      }
  84  
  85      $settings->add(new admin_setting_configduration('enrol_self/enrolperiod',
  86          get_string('enrolperiod', 'enrol_self'), get_string('enrolperiod_desc', 'enrol_self'), 0));
  87  
  88      $options = array(0 => get_string('no'), 1 => get_string('expirynotifyenroller', 'core_enrol'), 2 => get_string('expirynotifyall', 'core_enrol'));
  89      $settings->add(new admin_setting_configselect('enrol_self/expirynotify',
  90          get_string('expirynotify', 'core_enrol'), get_string('expirynotify_help', 'core_enrol'), 0, $options));
  91  
  92      $settings->add(new admin_setting_configduration('enrol_self/expirythreshold',
  93          get_string('expirythreshold', 'core_enrol'), get_string('expirythreshold_help', 'core_enrol'), 86400, 86400));
  94  
  95      $options = array(0 => get_string('never'),
  96                       1800 * 3600 * 24 => get_string('numdays', '', 1800),
  97                       1000 * 3600 * 24 => get_string('numdays', '', 1000),
  98                       365 * 3600 * 24 => get_string('numdays', '', 365),
  99                       180 * 3600 * 24 => get_string('numdays', '', 180),
 100                       150 * 3600 * 24 => get_string('numdays', '', 150),
 101                       120 * 3600 * 24 => get_string('numdays', '', 120),
 102                       90 * 3600 * 24 => get_string('numdays', '', 90),
 103                       60 * 3600 * 24 => get_string('numdays', '', 60),
 104                       30 * 3600 * 24 => get_string('numdays', '', 30),
 105                       21 * 3600 * 24 => get_string('numdays', '', 21),
 106                       14 * 3600 * 24 => get_string('numdays', '', 14),
 107                       7 * 3600 * 24 => get_string('numdays', '', 7));
 108      $settings->add(new admin_setting_configselect('enrol_self/longtimenosee',
 109          get_string('longtimenosee', 'enrol_self'), get_string('longtimenosee_help', 'enrol_self'), 0, $options));
 110  
 111      $settings->add(new admin_setting_configtext('enrol_self/maxenrolled',
 112          get_string('maxenrolled', 'enrol_self'), get_string('maxenrolled_help', 'enrol_self'), 0, PARAM_INT));
 113  
 114      $settings->add(new admin_setting_configcheckbox('enrol_self/sendcoursewelcomemessage',
 115          get_string('sendcoursewelcomemessage', 'enrol_self'), get_string('sendcoursewelcomemessage_help', 'enrol_self'), 1));
 116  }


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1