| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- require_once($CFG->dirroot . '/mod/sloodle/backup/moodle2/backup_sloodle_stepslib.php');
- require_once($CFG->dirroot . '/mod/sloodle/backup/moodle2/backup_sloodle_settingslib.php');
-
- /**
- * sloodle backup task that provides all the settings and steps to perform one
- * complete backup of the activity
- */
- class backup_sloodle_activity_task extends backup_activity_task {
-
- /**
- * Define (add) particular settings this activity can have
- */
- protected function define_my_settings() {
- // No particular settings for this activity
- }
-
- /**
- * Define (add) particular steps this activity can have
- */
- protected function define_my_steps() {
- // Choice only has one structure step
- $this->add_step(new backup_sloodle_activity_structure_step('sloodle_structure', 'sloodle.xml'));
- }
-
- /**
- * Code the transformations to perform in the activity in
- * order to get transportable (encoded) links
- */
- static public function encode_content_links($content) {
- global $CFG;
- $base = preg_quote($CFG->wwwroot,"#");
- // Any links to our own pluginfile.php URLs should be turned into something generic.
- // These will then be reencoded on restore into whatever is needed for that site.
- // Example:
- // http://gershwinklata1.avatarclassroom.com/pluginfile.php/408/mod_sloodle/presenter/1340348485/edmanga.jpg</source>
- if (preg_match('#^'.$base.'(/pluginfile.php/)\d+(/mod_sloodle/presenter/.*)#', $content, $matches)) {
- $content = '$@SITEROOT@$'.$matches[1].'$@CONTEXTID@$'.$matches[2];
- }
- return $content;
- }
- }
|