Skip to content

Commit

Permalink
MDL-53026 cohorts: edit names and idnumbers in place
Browse files Browse the repository at this point in the history
  • Loading branch information
marinaglancy committed Mar 11, 2016
1 parent e8952c5 commit 48983fb
Show file tree
Hide file tree
Showing 6 changed files with 178 additions and 2 deletions.
70 changes: 70 additions & 0 deletions cohort/classes/output/cohortidnumber.php
@@ -0,0 +1,70 @@
<?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/>.

/**
* Contains class core_cohort\output\cohortidnumber
*
* @package core_cohort
* @copyright 2016 Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace core_cohort\output;

use lang_string;

/**
* Class to prepare a cohort idnumber for display.
*
* @package core_cohort
* @copyright 2016 Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class cohortidnumber extends \core\output\inplace_editable {
/**
* Constructor.
*
* @param stdClass $cohort
*/
public function __construct($cohort) {
$cohortcontext = \context::instance_by_id($cohort->contextid);
$editable = has_capability('moodle/cohort:manage', $cohortcontext);
$displayvalue = s($cohort->idnumber); // All idnumbers are plain text.
parent::__construct('core_cohort', 'cohortidnumber', $cohort->id, $editable,
$displayvalue,
$cohort->idnumber,
new lang_string('editcohortidnumber', 'cohort'),
new lang_string('newidnumberfor', 'cohort', $displayvalue));
}

/**
* Updates cohort name and returns instance of this object
*
* @param int $cohortid
* @param string $newvalue
* @return static
*/
public static function update($cohortid, $newvalue) {
global $DB;
$cohort = $DB->get_record('cohort', array('id' => $cohortid), '*', MUST_EXIST);
$cohortcontext = \context::instance_by_id($cohort->contextid);
require_capability('moodle/cohort:manage', $cohortcontext);
$record = (object)array('id' => $cohort->id, 'idnumber' => $newvalue, 'contextid' => $cohort->contextid);
cohort_update_cohort($record);
$cohort->idnumber = $newvalue;
return new static($cohort);
}
}
73 changes: 73 additions & 0 deletions cohort/classes/output/cohortname.php
@@ -0,0 +1,73 @@
<?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/>.

/**
* Contains class core_cohort\output\cohortname
*
* @package core_cohort
* @copyright 2016 Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace core_cohort\output;

use lang_string;

/**
* Class to prepare a cohort name for display.
*
* @package core_cohort
* @copyright 2016 Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class cohortname extends \core\output\inplace_editable {
/**
* Constructor.
*
* @param stdClass $cohort
*/
public function __construct($cohort) {
$cohortcontext = \context::instance_by_id($cohort->contextid);
$editable = has_capability('moodle/cohort:manage', $cohortcontext);
$displayvalue = format_string($cohort->name, true, array('context' => $cohortcontext));
parent::__construct('core_cohort', 'cohortname', $cohort->id, $editable,
$displayvalue,
$cohort->name,
new lang_string('editcohortname', 'cohort'),
new lang_string('newnamefor', 'cohort', $displayvalue));
}

/**
* Updates cohort name and returns instance of this object
*
* @param int $cohortid
* @param string $newvalue
* @return static
*/
public static function update($cohortid, $newvalue) {
global $DB;
$cohort = $DB->get_record('cohort', array('id' => $cohortid), '*', MUST_EXIST);
$cohortcontext = \context::instance_by_id($cohort->contextid);
require_capability('moodle/cohort:manage', $cohortcontext);
$newvalue = clean_param($newvalue, PARAM_TEXT);
if (strval($newvalue) !== '') {
$record = (object)array('id' => $cohort->id, 'name' => $newvalue, 'contextid' => $cohort->contextid);
cohort_update_cohort($record);
$cohort->name = $newvalue;
}
return new static($cohort);
}
}
6 changes: 4 additions & 2 deletions cohort/index.php
Expand Up @@ -132,8 +132,10 @@
$line[] = $cohortcontext->get_context_name(false);
}
}
$line[] = format_string($cohort->name);
$line[] = s($cohort->idnumber); // All idnumbers are plain text.
$tmpl = new \core_cohort\output\cohortname($cohort);
$line[] = $OUTPUT->render_from_template('core/inplace_editable', $tmpl->export_for_template($OUTPUT));
$tmpl = new \core_cohort\output\cohortidnumber($cohort);
$line[] = $OUTPUT->render_from_template('core/inplace_editable', $tmpl->export_for_template($OUTPUT));
$line[] = format_text($cohort->description, $cohort->descriptionformat);

$line[] = $DB->count_records('cohort_members', array('cohortid'=>$cohort->id));
Expand Down
16 changes: 16 additions & 0 deletions cohort/lib.php
Expand Up @@ -516,3 +516,19 @@ function cohort_edit_controls(context $context, moodle_url $currenturl) {
}
return null;
}

/**
* Implements callback inplace_editable() allowing to edit values in-place
*
* @param string $itemtype
* @param int $itemid
* @param mixed $newvalue
* @return \core\output\inplace_editable
*/
function core_cohort_inplace_editable($itemtype, $itemid, $newvalue) {
if ($itemtype === 'cohortname') {
return \core_cohort\output\cohortname::update($itemid, $newvalue);
} else if ($itemtype === 'cohortidnumber') {
return \core_cohort\output\cohortidnumber::update($itemid, $newvalue);
}
}
11 changes: 11 additions & 0 deletions cohort/tests/behat/add_cohort.feature
Expand Up @@ -56,3 +56,14 @@ Feature: Add cohorts of users
And the "Current users" select box should contain "Third User (third@example.com)"
And the "Current users" select box should contain "Forth User (forth@example.com)"
And the "Current users" select box should not contain "First User (first@example.com)"

@javascript
Scenario: Edit cohort name in-place
When I follow "Cohorts"
And I click on "Edit cohort name" "link" in the "Test cohort name" "table_row"
And I set the field "New name for cohort Test cohort name" to "Students cohort"
And I press key "13" in the field "New name for cohort Test cohort name"
Then I should not see "Test cohort name"
And I should see "Students cohort"
And I follow "Cohorts"
And I should see "Students cohort"
4 changes: 4 additions & 0 deletions lang/en/cohort.php
Expand Up @@ -50,6 +50,8 @@
$string['displayedrows'] = '{$a->displayed} rows displayed out of {$a->total}.';
$string['duplicateidnumber'] = 'Cohort with the same ID number already exists';
$string['editcohort'] = 'Edit cohort';
$string['editcohortidnumber'] = 'Edit cohort ID';
$string['editcohortname'] = 'Edit cohort name';
$string['eventcohortcreated'] = 'Cohort created';
$string['eventcohortdeleted'] = 'Cohort deleted';
$string['eventcohortmemberadded'] = 'User added to a cohort';
Expand All @@ -61,6 +63,8 @@
$string['name'] = 'Name';
$string['namecolumnmissing'] = 'There is something wrong with the format of the CSV file. Please check that it includes column names.';
$string['namefieldempty'] = 'Field name can not be empty';
$string['newnamefor'] = 'New name for cohort {$a}';
$string['newidnumberfor'] = 'New idnumber for cohort {$a}';
$string['nocomponent'] = 'Created manually';
$string['potusers'] = 'Potential users';
$string['potusersmatching'] = 'Potential matching users';
Expand Down

0 comments on commit 48983fb

Please sign in to comment.