mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
2ecf267ccb
Merged from 1.9
253 lines
9.5 KiB
PHP
253 lines
9.5 KiB
PHP
<?php
|
|
|
|
require('../../config.php');
|
|
require_once($CFG->libdir.'/adminlib.php');
|
|
require_once($CFG->dirroot.'/user/profile/lib.php');
|
|
require_once($CFG->dirroot.'/user/profile/definelib.php');
|
|
|
|
admin_externalpage_setup('profilefields');
|
|
|
|
$action = optional_param('action', '', PARAM_ALPHA);
|
|
|
|
$redirect = $CFG->wwwroot.'/user/profile/index.php';
|
|
|
|
$strchangessaved = get_string('changessaved');
|
|
$strcancelled = get_string('cancelled');
|
|
$strdefaultcategory = get_string('profiledefaultcategory', 'admin');
|
|
$strnofields = get_string('profilenofieldsdefined', 'admin');
|
|
$strcreatefield = get_string('profilecreatefield', 'admin');
|
|
|
|
|
|
/// Do we have any actions to perform before printing the header
|
|
|
|
switch ($action) {
|
|
case 'movecategory':
|
|
$id = required_param('id', PARAM_INT);
|
|
$dir = required_param('dir', PARAM_ALPHA);
|
|
|
|
if (confirm_sesskey()) {
|
|
profile_move_category($id, $dir);
|
|
}
|
|
redirect($redirect);
|
|
break;
|
|
case 'movefield':
|
|
$id = required_param('id', PARAM_INT);
|
|
$dir = required_param('dir', PARAM_ALPHA);
|
|
|
|
if (confirm_sesskey()) {
|
|
profile_move_field($id, $dir);
|
|
}
|
|
redirect($redirect);
|
|
break;
|
|
case 'deletecategory':
|
|
$id = required_param('id', PARAM_INT);
|
|
$confirm = optional_param('confirm', 0, PARAM_BOOL);
|
|
|
|
if (data_submitted() and $confirm and confirm_sesskey()) {
|
|
profile_delete_category($id);
|
|
redirect($redirect);
|
|
}
|
|
|
|
//ask for confirmation
|
|
$fieldcount = $DB->count_records('user_info_field', array('categoryid'=>$id));
|
|
$optionsyes = array ('id'=>$id, 'confirm'=>1, 'action'=>'deletecategory', 'sesskey'=>sesskey());
|
|
echo $OUTPUT->header();
|
|
echo $OUTPUT->heading('profiledeletecategory', 'admin');
|
|
|
|
$formcontinue = new single_button(new moodle_url($redirect, $optionsyes), get_string('yes'), 'post');
|
|
$formcancel = new single_button($redirect, get_string('no'), 'get');
|
|
echo $OUTPUT->confirm(get_string('profileconfirmcategorydeletion', 'admin', $fieldcount), $formcontinue, $formcancel);
|
|
echo $OUTPUT->footer();
|
|
die;
|
|
break;
|
|
case 'deletefield':
|
|
$id = required_param('id', PARAM_INT);
|
|
$confirm = optional_param('confirm', 0, PARAM_BOOL);
|
|
|
|
if (data_submitted() and $confirm and confirm_sesskey()) {
|
|
profile_delete_field($id);
|
|
redirect($redirect);
|
|
}
|
|
|
|
//ask for confirmation
|
|
$datacount = $DB->count_records('user_info_data', array('fieldid'=>$id));
|
|
$optionsyes = array ('id'=>$id, 'confirm'=>1, 'action'=>'deletefield', 'sesskey'=>sesskey());
|
|
$strheading = get_string('profiledeletefield', 'admin');
|
|
$PAGE->navbar->add($strheading);
|
|
echo $OUTPUT->header();
|
|
echo $OUTPUT->heading($strheading);
|
|
$formcontinue = new single_button(new moodle_url($redirect, $optionsyes), get_string('yes'), 'post');
|
|
$formcancel = new single_button($redirect, get_string('no'), 'get');
|
|
echo $OUTPUT->confirm(get_string('profileconfirmfielddeletion', 'admin', $datacount), $formcontinue, $formcancel);
|
|
echo $OUTPUT->footer();
|
|
die;
|
|
break;
|
|
case 'editfield':
|
|
$id = optional_param('id', 0, PARAM_INT);
|
|
$datatype = optional_param('datatype', '', PARAM_ALPHA);
|
|
|
|
profile_edit_field($id, $datatype, $redirect);
|
|
die;
|
|
break;
|
|
case 'editcategory':
|
|
$id = optional_param('id', 0, PARAM_INT);
|
|
|
|
profile_edit_category($id, $redirect);
|
|
die;
|
|
break;
|
|
default:
|
|
//normal form
|
|
}
|
|
|
|
/// Print the header
|
|
echo $OUTPUT->header();
|
|
echo $OUTPUT->heading(get_string('profilefields', 'admin'));
|
|
|
|
/// Check that we have at least one category defined
|
|
if ($DB->count_records('user_info_category') == 0) {
|
|
$defaultcategory = new object();
|
|
$defaultcategory->name = $strdefaultcategory;
|
|
$defaultcategory->sortorder = 1;
|
|
$DB->insert_record('user_info_category', $defaultcategory);
|
|
redirect($redirect);
|
|
}
|
|
|
|
/// Show all categories
|
|
$categories = $DB->get_records('user_info_category', null, 'sortorder ASC');
|
|
|
|
foreach ($categories as $category) {
|
|
$table = new html_table();
|
|
$table->head = array(get_string('profilefield', 'admin'), get_string('edit'));
|
|
$table->align = array('left', 'right');
|
|
$table->width = '95%';
|
|
$table->attributes['class'] = 'generaltable profilefield';
|
|
$table->data = array();
|
|
|
|
if ($fields = $DB->get_records('user_info_field', array('categoryid'=>$category->id), 'sortorder ASC')) {
|
|
foreach ($fields as $field) {
|
|
$table->data[] = array(format_string($field->name), profile_field_icons($field));
|
|
}
|
|
}
|
|
|
|
echo $OUTPUT->heading(format_string($category->name) .' '.profile_category_icons($category));
|
|
if (count($table->data)) {
|
|
echo html_writer::table($table);
|
|
} else {
|
|
echo $OUTPUT->notification($strnofields);
|
|
}
|
|
|
|
} /// End of $categories foreach
|
|
|
|
|
|
|
|
|
|
echo '<hr />';
|
|
echo '<div class="profileeditor">';
|
|
|
|
/// Create a new field link
|
|
$options = profile_list_datatypes();
|
|
$popupurl = new moodle_url('/user/profile/index.php?id=0&action=editfield');
|
|
echo $OUTPUT->single_select($popupurl, 'datatype', $options, '', array(''=>$strcreatefield), 'newfieldform');
|
|
|
|
/// Create a new category link
|
|
$options = array('action'=>'editcategory');
|
|
echo $OUTPUT->single_button(new moodle_url('index.php', $options), get_string('profilecreatecategory', 'admin'));
|
|
|
|
echo '</div>';
|
|
|
|
echo $OUTPUT->footer();
|
|
die;
|
|
|
|
|
|
/***** Some functions relevant to this script *****/
|
|
|
|
/**
|
|
* Create a string containing the editing icons for the user profile categories
|
|
* @param object the category object
|
|
* @return string the icon string
|
|
*/
|
|
function profile_category_icons ($category) {
|
|
global $CFG, $USER, $DB, $OUTPUT;
|
|
|
|
$strdelete = get_string('delete');
|
|
$strmoveup = get_string('moveup');
|
|
$strmovedown = get_string('movedown');
|
|
$stredit = get_string('edit');
|
|
|
|
$categorycount = $DB->count_records('user_info_category');
|
|
$fieldcount = $DB->count_records('user_info_field', array('categoryid'=>$category->id));
|
|
|
|
/// Edit
|
|
$editstr = '<a title="'.$stredit.'" href="index.php?id='.$category->id.'&action=editcategory"><img src="'.$OUTPUT->pix_url('t/edit') . '" alt="'.$stredit.'" class="iconsmall" /></a> ';
|
|
|
|
/// Delete
|
|
/// Can only delete the last category if there are no fields in it
|
|
if ( ($categorycount > 1) or ($fieldcount == 0) ) {
|
|
$editstr .= '<a title="'.$strdelete.'" href="index.php?id='.$category->id.'&action=deletecategory';
|
|
$editstr .= '"><img src="'.$OUTPUT->pix_url('t/delete') . '" alt="'.$strdelete.'" class="iconsmall" /></a> ';
|
|
} else {
|
|
$editstr .= '<img src="'.$OUTPUT->pix_url('spacer') . '" alt="" class="iconsmall" /> ';
|
|
}
|
|
|
|
/// Move up
|
|
if ($category->sortorder > 1) {
|
|
$editstr .= '<a title="'.$strmoveup.'" href="index.php?id='.$category->id.'&action=movecategory&dir=up&sesskey='.sesskey().'"><img src="'.$OUTPUT->pix_url('t/up') . '" alt="'.$strmoveup.'" class="iconsmall" /></a> ';
|
|
} else {
|
|
$editstr .= '<img src="'.$OUTPUT->pix_url('spacer') . '" alt="" class="iconsmall" /> ';
|
|
}
|
|
|
|
/// Move down
|
|
if ($category->sortorder < $categorycount) {
|
|
$editstr .= '<a title="'.$strmovedown.'" href="index.php?id='.$category->id.'&action=movecategory&dir=down&sesskey='.sesskey().'"><img src="'.$OUTPUT->pix_url('t/down') . '" alt="'.$strmovedown.'" class="iconsmall" /></a> ';
|
|
} else {
|
|
$editstr .= '<img src="'.$OUTPUT->pix_url('spacer') . '" alt="" class="iconsmall" /> ';
|
|
}
|
|
|
|
return $editstr;
|
|
}
|
|
|
|
/**
|
|
* Create a string containing the editing icons for the user profile fields
|
|
* @param object the field object
|
|
* @return string the icon string
|
|
*/
|
|
function profile_field_icons($field) {
|
|
global $CFG, $USER, $DB, $OUTPUT;
|
|
|
|
if (empty($str)) {
|
|
$strdelete = get_string('delete');
|
|
$strmoveup = get_string('moveup');
|
|
$strmovedown = get_string('movedown');
|
|
$stredit = get_string('edit');
|
|
}
|
|
|
|
$fieldcount = $DB->count_records('user_info_field', array('categoryid'=>$field->categoryid));
|
|
$datacount = $DB->count_records('user_info_data', array('fieldid'=>$field->id));
|
|
|
|
/// Edit
|
|
$editstr = '<a title="'.$stredit.'" href="index.php?id='.$field->id.'&action=editfield"><img src="'.$OUTPUT->pix_url('t/edit') . '" alt="'.$stredit.'" class="iconsmall" /></a> ';
|
|
|
|
/// Delete
|
|
$editstr .= '<a title="'.$strdelete.'" href="index.php?id='.$field->id.'&action=deletefield';
|
|
$editstr .= '"><img src="'.$OUTPUT->pix_url('t/delete') . '" alt="'.$strdelete.'" class="iconsmall" /></a> ';
|
|
|
|
/// Move up
|
|
if ($field->sortorder > 1) {
|
|
$editstr .= '<a title="'.$strmoveup.'" href="index.php?id='.$field->id.'&action=movefield&dir=up&sesskey='.sesskey().'"><img src="'.$OUTPUT->pix_url('t/up') . '" alt="'.$strmoveup.'" class="iconsmall" /></a> ';
|
|
} else {
|
|
$editstr .= '<img src="'.$OUTPUT->pix_url('spacer') . '" alt="" class="iconsmall" /> ';
|
|
}
|
|
|
|
/// Move down
|
|
if ($field->sortorder < $fieldcount) {
|
|
$editstr .= '<a title="'.$strmovedown.'" href="index.php?id='.$field->id.'&action=movefield&dir=down&sesskey='.sesskey().'"><img src="'.$OUTPUT->pix_url('t/down') . '" alt="'.$strmovedown.'" class="iconsmall" /></a> ';
|
|
} else {
|
|
$editstr .= '<img src="'.$OUTPUT->pix_url('spacer') . '" alt="" class="iconsmall" /> ';
|
|
}
|
|
|
|
return $editstr;
|
|
}
|
|
|
|
|
|
|