Revert "MDL-30482 - Glossary - Adding capability to other areas using glossary"

This reverts commit d79de196c9f0d19b54454e5109bb6b8ab34f07eb.
This commit is contained in:
Aparup Banerjee 2011-12-14 14:59:16 +08:00
parent 2faa009fa1
commit d4f2755206
5 changed files with 5 additions and 12 deletions

View File

@ -118,10 +118,6 @@ class block_glossary_random extends block_base {
function get_content() {
global $USER, $CFG, $DB;
if (!has_capability('mod/glossary:read', $this->context)) {
return "";
}
if (empty($this->config->glossary)) {
$this->content->text = get_string('notyetconfigured','block_glossary_random');
$this->content->footer = '';

View File

@ -57,7 +57,7 @@ class filter_glossary extends moodle_text_filter {
$nothingtodo = false;
}
if (($nothingtodo === true) || (!has_capability('mod/glossary:read', $this->context))) {
if ($nothingtodo === true) {
return $text;
}

View File

@ -41,7 +41,7 @@ $capabilities = array(
'editingteacher' => CAP_ALLOW,
'manager' => CAP_ALLOW
)
),
),
'mod/glossary:write' => array(

View File

@ -323,7 +323,7 @@ function glossary_user_complete($course, $user, $mod, $glossary) {
* @return bool
*/
function glossary_print_recent_activity($course, $viewfullnames, $timestart) {
global $CFG, $USER, $DB, $OUTPUT, $PAGE;
global $CFG, $USER, $DB, $OUTPUT;
//TODO: use timestamp in approved field instead of changing timemodified when approving in 2.0
if (!defined('GLOSSARY_RECENT_ACTIVITY_LIMIT')) {
@ -351,9 +351,6 @@ function glossary_print_recent_activity($course, $viewfullnames, $timestart) {
$approvals = array();
foreach ($ids as $glinstanceid => $glcmid) {
$context = get_context_instance(CONTEXT_MODULE, $glcmid);
if (!has_capability('mod/glossary:read', $context)) {
continue;
}
// get records glossary entries that are approved if user has no capability to approve entries.
if (has_capability('mod/glossary:approve', $context)) {
$approvals[] = ' ge.glossaryid = :glsid'.$glinstanceid.' ';
@ -2774,7 +2771,7 @@ function glossary_extend_settings_navigation(settings_navigation $settings, navi
$glossary = $DB->get_record('glossary', array("id" => $PAGE->cm->instance));
if (!empty($CFG->enablerssfeeds) && !empty($CFG->glossary_enablerssfeeds) && $glossary->rsstype && $glossary->rssarticles && has_capability('mod/glossary:read', $PAGE->cm->context)) {
if (!empty($CFG->enablerssfeeds) && !empty($CFG->glossary_enablerssfeeds) && $glossary->rsstype && $glossary->rssarticles && can_access_course($PAGE->course, $USER)) {
require_once("$CFG->libdir/rsslib.php");
$string = get_string('rsstype','forum');

View File

@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die();
$module->version = 2011120200; // The current module version (Date: YYYYMMDDXX)
$module->version = 2011112900; // The current module version (Date: YYYYMMDDXX)
$module->requires = 2011112900; // Requires this Moodle version
$module->component = 'mod_glossary'; // Full name of the plugin (used for diagnostics)
$module->cron = 0;