-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #252 from learnweb/feature/disable_rating_selection
Feature/disable rating selection
- Loading branch information
Showing
6 changed files
with
192 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?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/>. | ||
|
||
/** | ||
* The mod_ratingallocate rating_deleted event. | ||
* | ||
* @package mod_ratingallocate | ||
* @copyright 2020 Robin Tschudi | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
namespace mod_ratingallocate\event; | ||
defined('MOODLE_INTERNAL') || die(); | ||
/** | ||
* The mod_ratingallocate rating_deleted event class. | ||
* | ||
* @copyright 2020 Robin Tschudi | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
**/ | ||
class all_ratings_deleted extends \core\event\base { | ||
|
||
public static function create_simple($modulecontext, $ratingallocateid) { | ||
return self::create(array('context' => $modulecontext, 'objectid' => $ratingallocateid)); | ||
} | ||
protected function init() { | ||
$this->data['crud'] = 'd'; | ||
$this->data['edulevel'] = self::LEVEL_TEACHING; | ||
$this->data['objecttable'] = 'ratingallocate_ratings'; | ||
} | ||
|
||
public static function get_name() { | ||
return get_string('log_all_ratings_deleted', 'mod_ratingallocate'); | ||
} | ||
|
||
public function get_description() { | ||
return get_string('log_all_ratings_deleted_description', 'mod_ratingallocate', | ||
array('userid' => $this->userid, 'ratingallocateid' => $this->objectid)); | ||
} | ||
|
||
public function get_url() { | ||
return new \moodle_url('/mod/ratingallocate/view.php', array('m' => $this->objectid)); | ||
} | ||
|
||
public static function get_objectid_mapping() { | ||
return array('db' => 'ratingallocate', 'restore' => 'ratingallocate'); | ||
} | ||
|
||
public static function get_other_mapping() { | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters