Skip to content

Commit

Permalink
Format template
Browse files Browse the repository at this point in the history
  • Loading branch information
nilshoerrmann authored and brendo committed Sep 28, 2014
1 parent 6acc035 commit b7e7e47
Showing 1 changed file with 34 additions and 32 deletions.
66 changes: 34 additions & 32 deletions templates/xml-importer.php
@@ -1,37 +1,39 @@
<?php

require_once(EXTENSIONS . '/xmlimporter/lib/class.xmlimporter.php');
require_once(EXTENSIONS . '/xmlimporter/lib/class.xmlimporter.php');

class XMLImporter%s extends XMLImporter {
public function about() {
return array(
'name' => %s,
'author' => array(
'name' => %s,
'email' => %s
),
'description' => %s,
'file' => __FILE__,
'created' => %s,
'updated' => %s
);
}
class XMLImporter%s extends XMLImporter {
public function about()
{
return array(
'name' => %s,
'author' => array(
'name' => %s,
'email' => %s
),
'description' => %s,
'file' => __FILE__,
'created' => %s,
'updated' => %s
);
}

public function options() {
return array(
'can-update' => %s,
'fields' => %s,
'included-elements' => %s,
'namespaces' => %s,
'source' => %s,
'timeout' => %s,
'section' => %s,
'unique-field' => %s
);
}

public function allowEditorToParse() {
return true;
}
}
public function options()
{
return array(
'can-update' => %s,
'fields' => %s,
'included-elements' => %s,
'namespaces' => %s,
'source' => %s,
'timeout' => %s,
'section' => %s,
'unique-field' => %s
);
}

public function allowEditorToParse()
{
return true;
}
}

0 comments on commit b7e7e47

Please sign in to comment.