You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
3.2 KiB
79 lines
3.2 KiB
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle 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.
|
|
//
|
|
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Front-end class.
|
|
*
|
|
* @package availability_profile
|
|
* @copyright 2014 The Open University
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
namespace availability_profile;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
/**
|
|
* Front-end class.
|
|
*
|
|
* @package availability_profile
|
|
* @copyright 2014 The Open University
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class frontend extends \core_availability\frontend {
|
|
protected function get_javascript_strings() {
|
|
return array('op_contains', 'op_doesnotcontain', 'op_endswith', 'op_isempty',
|
|
'op_isequalto', 'op_isnotempty', 'op_startswith', 'conditiontitle',
|
|
'label_operator', 'label_value');
|
|
}
|
|
|
|
protected function get_javascript_init_params($course, \cm_info $cm = null,
|
|
\section_info $section = null) {
|
|
// Standard user fields.
|
|
$standardfields = array(
|
|
'firstname' => get_user_field_name('firstname'),
|
|
'lastname' => get_user_field_name('lastname'),
|
|
'email' => get_user_field_name('email'),
|
|
'city' => get_user_field_name('city'),
|
|
'country' => get_user_field_name('country'),
|
|
'url' => get_user_field_name('url'),
|
|
'icq' => get_user_field_name('icq'),
|
|
'skype' => get_user_field_name('skype'),
|
|
'aim' => get_user_field_name('aim'),
|
|
'yahoo' => get_user_field_name('yahoo'),
|
|
'msn' => get_user_field_name('msn'),
|
|
'idnumber' => get_user_field_name('idnumber'),
|
|
'institution' => get_user_field_name('institution'),
|
|
'department' => get_user_field_name('department'),
|
|
'phone1' => get_user_field_name('phone1'),
|
|
'phone2' => get_user_field_name('phone2'),
|
|
'address' => get_user_field_name('address')
|
|
);
|
|
\core_collator::asort($standardfields);
|
|
|
|
// Custom fields.
|
|
$customfields = array();
|
|
$options = array('context' => \context_course::instance($course->id));
|
|
foreach (condition::get_custom_profile_fields() as $field) {
|
|
$customfields[$field->shortname] = format_string($field->name, true, $options);
|
|
}
|
|
\core_collator::asort($customfields);
|
|
|
|
// Make arrays into JavaScript format (non-associative, ordered) and return.
|
|
return array(self::convert_associative_array_for_js($standardfields, 'field', 'display'),
|
|
self::convert_associative_array_for_js($customfields, 'field', 'display'));
|
|
}
|
|
}
|
|
|