Changed the class names so that they match the directory structure

This commit is contained in:
Mark Nelson 2013-06-12 16:23:08 +08:00
parent fa5d45eef3
commit 7500bfda26
22 changed files with 72 additions and 72 deletions

View file

@ -16,9 +16,9 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Strings for component 'customcertelement_code', language 'en'.
* Strings for component 'customcertelements_code', language 'en'.
*
* @package customcertelement_code
* @package customcertelements_code
* @copyright Mark Nelson <markn@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

View file

@ -18,7 +18,7 @@
/**
* The code elements core interaction API.
*
* @package customcertelement_code
* @package customcertelements_code
* @copyright Mark Nelson <markn@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
@ -27,7 +27,7 @@ defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.');
require_once($CFG->dirroot . '/mod/customcert/elements/element.class.php');
class customcert_element_code extends customcert_element_base {
class customcert_elements_code extends customcert_elements_base {
/**
* Handles rendering the element on the pdf.

View file

@ -18,13 +18,13 @@
/**
* This file contains the version information for the code plugin.
*
* @package customcertelement_code
* @package customcertelements_code
* @copyright Mark Nelson <markn@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.');
$plugin->version = 2013060600;
$plugin->version = 2013061200;
$plugin->requires = 2013040500; // Requires this Moodle version.
$plugin->component = 'customcertelement_code';
$plugin->component = 'customcertelements_code';