Dan Marsden
13 years ago
29 changed files with 432 additions and 60 deletions
@ -1,10 +1,22 @@ |
|||||
<?PHP // $Id: attforblock.php,v 1.1.2.2 2009/02/23 19:22:46 dlnsk Exp $
|
<?php |
||||
// block_attendance.php - created with Moodle 1.5.3+ (2005060230) |
// This file is part of Moodle - http://moodle.org/ |
||||
|
// |
||||
|
// Moodle is free software: you can redistribute it and/or modify |
||||
|
// it under the terms of the GNU General Public License as published by |
||||
|
// the Free Software Foundation, either version 3 of the License, or |
||||
|
// (at your option) any later version. |
||||
|
// |
||||
|
// Moodle is distributed in the hope that it will be useful, |
||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
// GNU General Public License for more details. |
||||
|
// |
||||
|
// You should have received a copy of the GNU General Public License |
||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
||||
|
|
||||
|
|
||||
|
|
||||
$string['strftimedm'] = '%m.%d'; |
$string['strftimedm'] = '%m.%d'; |
||||
$string['strftimedmy'] = '%m.%d.%Y'; |
$string['strftimedmy'] = '%m.%d.%Y'; |
||||
$string['strftimedmyw'] = '%m.%d.%y (%a)'; |
$string['strftimedmyw'] = '%m.%d.%y (%a)'; |
||||
$string['strftimeshortdate'] = '%m.%d.%Y'; |
$string['strftimeshortdate'] = '%m.%d.%Y'; |
||||
|
|
||||
?> |
|
@ -1,11 +1,29 @@ |
|||||
<?PHP |
<?php |
||||
|
// This file is part of Moodle - http://moodle.org/ |
||||
|
// |
||||
|
// Moodle is free software: you can redistribute it and/or modify |
||||
|
// it under the terms of the GNU General Public License as published by |
||||
|
// the Free Software Foundation, either version 3 of the License, or |
||||
|
// (at your option) any later version. |
||||
|
// |
||||
|
// Moodle is distributed in the hope that it will be useful, |
||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
// GNU General Public License for more details. |
||||
|
// |
||||
|
// You should have received a copy of the GNU General Public License |
||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
||||
|
|
||||
///////////////////////////////////////////////////////////////////////////////// |
/** |
||||
/// Code fragment to define the version of attforblock |
* Version information |
||||
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php |
* |
||||
///////////////////////////////////////////////////////////////////////////////// |
* @package mod |
||||
|
* @subpackage attforblock |
||||
|
* @copyright 2011 Artem Andreev <andreev.artem@gmail.com> |
||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
||||
|
*/ |
||||
|
|
||||
$module->version = 2011071600; // The current module version (Date: YYYYMMDDXX) |
$module->version = 2011071600; // The current module version (Date: YYYYMMDDXX) |
||||
$module->release = '2.4.0'; |
$module->release = '2.4.0'; |
||||
$module->cron = 0; // Period for cron to check this module (secs) |
$module->cron = 0; // Period for cron to check this module (secs) |
||||
?> |
$module->component = 'mod_attforblock'; // Full name of the plugin (used for diagnostics) |
||||
|
Loading…
Reference in new issue