mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
MDL-30007 add/fix version files for all auth plugins
This commit is contained in:
parent
a5b5881d46
commit
be974aa7f9
@ -1,3 +1,32 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2010072600;
|
/**
|
||||||
|
* Version details
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage cas
|
||||||
|
* @author Martin Dougiamas
|
||||||
|
* @author Jerome GUTIERREZ
|
||||||
|
* @author Iñaky Arenaza
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_cas'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -1,3 +1,30 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2009112400;
|
/**
|
||||||
|
* Version details
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage db
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_db'; // Full name of the plugin (used for diagnostics)
|
||||||
|
30
auth/email/version.php
Normal file
30
auth/email/version.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?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/>.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version details
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage email
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die;
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_email'; // Full name of the plugin (used for diagnostics)
|
@ -1,3 +1,30 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2009112400;
|
/**
|
||||||
|
* Version details
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage fc
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_fc'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -1,3 +1,30 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2009112400;
|
/**
|
||||||
|
* Version details
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage imap
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_imap'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -1,3 +1,31 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2010072600;
|
/**
|
||||||
|
* Version details
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage ldap
|
||||||
|
* @author Martin Dougiamas
|
||||||
|
* @author Iñaky Arenaza
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_ldap'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -25,5 +25,6 @@
|
|||||||
|
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
$plugin->version = 2011022700;
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
$plugin->component = 'auth_manual';
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_manual'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -1,3 +1,30 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2010071300;
|
/**
|
||||||
|
* Manual authentication plugin version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage mnet
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_mnet'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -1,3 +1,30 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2009112400;
|
/**
|
||||||
|
* Version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage nntp
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_nntp'; // Full name of the plugin (used for diagnostics)
|
||||||
|
30
auth/nologin/version.php
Normal file
30
auth/nologin/version.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?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/>.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage nologin
|
||||||
|
* @copyright 2011 Petr Skoda (http://skodak.org)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_nologin'; // Full name of the plugin (used for diagnostics)
|
30
auth/none/version.php
Normal file
30
auth/none/version.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?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/>.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage none
|
||||||
|
* @copyright 2011 Petr Skoda (http://skodak.org)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_none'; // Full name of the plugin (used for diagnostics)
|
@ -1,3 +1,30 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2009112400;
|
/**
|
||||||
|
* Version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage pam
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_pam'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -1,3 +1,30 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2009112400;
|
/**
|
||||||
|
* Version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage pop3
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_pop3'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -1,3 +1,30 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2009112400;
|
/**
|
||||||
|
* Version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage radius
|
||||||
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_radius'; // Full name of the plugin (used for diagnostics)
|
||||||
|
@ -1,3 +1,31 @@
|
|||||||
<?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/>.
|
||||||
|
|
||||||
$plugin->version = 2009112400;
|
/**
|
||||||
|
* Version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage shibboleth
|
||||||
|
* @author Martin Dougiamas
|
||||||
|
* @author Lukas Haemmerle
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_shibboleth'; // Full name of the plugin (used for diagnostics)
|
||||||
|
30
auth/webservice/version.php
Normal file
30
auth/webservice/version.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?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/>.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version information
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @subpackage webservice
|
||||||
|
* @copyright 2011 Petr Skoda (http://skodak.org)
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
|
$plugin->component = 'auth_webservice'; // Full name of the plugin (used for diagnostics)
|
Loading…
x
Reference in New Issue
Block a user