Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
"MDL-19181, display plugin instances based on capabilities"
  • Loading branch information
dongsheng committed Aug 7, 2009
1 parent c86dde2 commit 99e2c8b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
15 changes: 15 additions & 0 deletions repository/flickr_public/db/access.php
@@ -0,0 +1,15 @@
<?php

$repository_flickr_public_capabilities = array(

'repository/flickr:view' => array(
'captype' => 'read',
'contextlevel' => CONTEXT_SYSTEM,
'legacy' => array(
'student' => CAP_ALLOW,
'teacher' => CAP_ALLOW,
'editingteacher' => CAP_ALLOW,
'admin' => CAP_ALLOW
)
)
);
20 changes: 20 additions & 0 deletions repository/flickr_public/db/upgrade.php
@@ -0,0 +1,20 @@
<?php

function xmldb_repository_flickr_public_upgrade($oldversion) {

global $CFG, $DB;

$dbman = $DB->get_manager();
$result = true;

/// And upgrade begins here. For each one, you'll need one
/// block of code similar to the next one. Please, delete
/// this comment lines once this file start handling proper
/// upgrade code.

/// if ($result && $oldversion < YYYYMMDD00) { //New version in version.php
/// $result = result of database_manager methods
/// }

return $result;
}

0 comments on commit 99e2c8b

Please sign in to comment.