mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
0eb58cf43a
1. Create a ajax file picker, which can switch views(list and thumbnail now), transfer json data between server and client side 2. Improve curl.class.php 3. Improve boxnet plugin, which won't need to redirect box.net to authenticate from now on 4. Improve flickr plugin
13 lines
546 B
PHP
Executable File
13 lines
546 B
PHP
Executable File
<?php // $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
/// Code fragment to define the version of repository plug-in (box.net)
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$plugin->name = "Box.net Repository";
|
|
$plugin->version = 2008062701; // The current plug-in version (Date: YYYYMMDDXX)
|
|
$plugin->requires = 2007101509; // The current plug-in version (Date: YYYYMMDDXX)
|
|
$plugin->cron = 3600; // Period for cron to check this plug-in (secs)
|
|
|
|
?>
|