. /** * Installation for the URL repository * * @package repository_url * @category repository * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Create a default instance of the URL repository * * @return bool A status indicating success or failure */ function xmldb_repository_url_install() { global $CFG; $result = true; require_once($CFG->dirroot.'/repository/lib.php'); $urlplugin = new repository_type('url', array(), true); if(!$id = $urlplugin->create(true)) { $result = false; } return $result; }