Skip to content

Commit

Permalink
MDL-32880: moodle1 backup converter: add basic block handler
Browse files Browse the repository at this point in the history
This handler processes the basic details of blocks - files and role assignments/overrides are currently ignored (though template inforef.xml and roles.xml files are created).  In order to use this generic handler, a block should extend this handler with a custom get_paths() function which attaches the "block" processor to the relevant path.
  • Loading branch information
pauln authored and Mike Churchward committed Nov 5, 2012
1 parent da4ebce commit 5036ed8
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions backup/converter/moodle1/handlerlib.php
Expand Up @@ -1988,7 +1988,62 @@ public function on_legacy_resource_end(array $data) {
* Base class for block handlers
*/
abstract class moodle1_block_handler extends moodle1_plugin_handler {
public function process_block(array $data) {
$newdata = array();
$instanceid = $data['id'];
$contextid = $this->converter->get_contextid(CONTEXT_BLOCK, $data['id']);

$newdata['blockname'] = $data['name'];
$newdata['parentcontextid'] = $this->converter->get_contextid(CONTEXT_COURSE, 0);
$newdata['showinsubcontexts'] = 0;
$newdata['pagetypepattern'] = $data['pagetype'].='-*';
$newdata['subpagepattern'] = '$@NULL@$';
$newdata['defaultregion'] = ($data['position']=='l')?'side-pre':'side-post';
$newdata['defaultweight'] = $data['weight'];
$newdata['configdata'] = $data['configdata'];

// block.xml
$this->open_xml_writer("course/blocks/{$data['name']}/block.xml");
$this->xmlwriter->begin_tag('block', array('id' => $instanceid, 'contextid' => $contextid));

foreach ($newdata as $field => $value) {
$this->xmlwriter->full_tag($field, $value);
}

$this->xmlwriter->begin_tag('block_positions');
$this->xmlwriter->begin_tag('block_position', array('id' => 1));
$this->xmlwriter->full_tag('contextid', $newdata['parentcontextid']);
$this->xmlwriter->full_tag('pagetype', $data['pagetype']);
$this->xmlwriter->full_tag('subpage', '');
$this->xmlwriter->full_tag('visible', $data['visible']);
$this->xmlwriter->full_tag('region', $newdata['defaultregion']);
$this->xmlwriter->full_tag('weight', $newdata['defaultweight']);
$this->xmlwriter->end_tag('block_position');
$this->xmlwriter->end_tag('block_positions');
$this->xmlwriter->end_tag('block');
$this->close_xml_writer();

// inforef.xml
$this->open_xml_writer("course/blocks/{$data['name']}/inforef.xml");
$this->xmlwriter->begin_tag('inforef');
// TODO: inforef contents if needed
$this->xmlwriter->end_tag('inforef');
$this->close_xml_writer();

// roles.xml
$this->open_xml_writer("course/blocks/{$data['name']}/roles.xml");
$this->xmlwriter->begin_tag('roles');
$this->xmlwriter->begin_tag('role_overrides');
// TODO: role overrides if needed
$this->xmlwriter->end_tag('role_overrides');
$this->xmlwriter->begin_tag('role_assignments');
// TODO: role assignments if needed
$this->xmlwriter->end_tag('role_assignments');
$this->xmlwriter->end_tag('roles');
$this->close_xml_writer();

return $data;
}
}


Expand Down

0 comments on commit 5036ed8

Please sign in to comment.