]> git.mjollnir.org Git - moodle.git/commitdiff
Removed mod/resource:view
authorvyshane <vyshane>
Fri, 22 Sep 2006 03:05:46 +0000 (03:05 +0000)
committervyshane <vyshane>
Fri, 22 Sep 2006 03:05:46 +0000 (03:05 +0000)
mod/resource/db/access.php [deleted file]

diff --git a/mod/resource/db/access.php b/mod/resource/db/access.php
deleted file mode 100644 (file)
index 90bf7e8..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-<?php
-//
-// Capability definitions for the resource module.
-//
-// The capabilities are loaded into the database table when the module is
-// installed or updated. Whenever the capability definitions are updated,
-// the module version number should be bumped up.
-//
-// The system has four possible values for a capability:
-// CAP_ALLOW, CAP_PREVENT, CAP_PROHIBIT, and inherit (not set).
-//
-//
-// CAPABILITY NAMING CONVENTION
-//
-// It is important that capability names are unique. The naming convention
-// for capabilities that are specific to modules and blocks is as follows:
-//   [mod/block]/<component_name>:<capabilityname>
-//
-// component_name should be the same as the directory name of the mod or block.
-//
-// Core moodle capabilities are defined thus:
-//    moodle/<capabilityclass>:<capabilityname>
-//
-// Examples: mod/forum:viewpost
-//           block/recent_activity:view
-//           moodle/site:deleteuser
-//
-// The variable name for the capability definitions array follows the format
-//   $<componenttype>_<component_name>_capabilities
-//
-// For the core capabilities, the variable is $moodle_capabilities.
-
-
-$mod_resource_capabilities = array(
-
-    'mod/resource:view' => array(
-
-        'captype' => 'read',
-        'contextlevel' => CONTEXT_MODULE,
-        'legacy' => array(
-            'guest' => CAP_ALLOW,
-            'student' => CAP_ALLOW,
-            'teacher' => CAP_ALLOW,
-            'editingteacher' => CAP_ALLOW,
-            'coursecreator' => CAP_ALLOW,
-            'admin' => CAP_ALLOW
-        )
-    )
-
-);
-
-?>