. /** * @package core * @subpackage backup-moodle2 * @copyright 2011 David Mudrak * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Base class for all advanced grading form plugins */ abstract class restore_gradingform_plugin extends restore_plugin { /** * Helper method returning the mapping identifierto use for * grading form instance's itemid field * * @param array $areaname the name of the area the form is defined for * @return string the mapping identifier */ public static function itemid_mapping($areaname) { return 'grading_item_'.$areaname; } }