-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README, extension.meta.xml, remove about() and delegate subscr…
…iption
- Loading branch information
Showing
3 changed files
with
16 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,40 +8,6 @@ class Extension_XmlImporter extends Extension { | |
Definition: | ||
-------------------------------------------------------------------------*/ | ||
|
||
public function about() { | ||
return array( | ||
'name' => 'XML Importer', | ||
'version' => '1.1.0', | ||
'release-date' => '2011-11-21', | ||
'author' => array( | ||
array( | ||
'name' => 'Nick Dunn', | ||
'website' => 'http://nick-dunn.co.uk' | ||
), | ||
array( | ||
'name' => 'Rowan Lewis', | ||
'website' => 'http://rowanlewis.com', | ||
'email' => '[email protected]' | ||
), | ||
array( | ||
'name' => 'Brendan Abbott', | ||
'website' => '[email protected]' | ||
) | ||
), | ||
'description' => 'Import data from XML documents directly into Symphony.' | ||
); | ||
} | ||
|
||
public function getSubscribedDelegates() { | ||
return array( | ||
array( | ||
'page' => '/backend/', | ||
'delegate' => 'InitaliseAdminPageHead', | ||
'callback' => 'initializeAdmin' | ||
) | ||
); | ||
} | ||
|
||
public function fetchNavigation() { | ||
return array( | ||
array( | ||
|
@@ -52,10 +18,6 @@ public function fetchNavigation() { | |
); | ||
} | ||
|
||
public function initializeAdmin($context) { | ||
$page = $context['parent']->Page; | ||
} | ||
|
||
/*------------------------------------------------------------------------- | ||
Utilities: | ||
-------------------------------------------------------------------------*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# XML Importer | ||
|
||
- Version: 1.1.0 | ||
- Version: 2.0.0 | ||
- Author: [Rowan Lewis](http://rowanlewis.com/), [Nick Dunn](http://nick-dunn.co.uk/), [Brendan Abbott]([email protected]) | ||
- Release Date: 21st November 2011 | ||
- Requirements: Symphony 2.2 | ||
- Release Date: unreleased | ||
- Requirements: Symphony 2.3 | ||
|
||
|
||
## Description | ||
|
||
XML Importer is a way of creating repeatable templates to import data from XML feeds directly into Symphony sections. It provides a way of mapping content from XML nodes directly onto fields in your sections, and the ability to both create new and update existing entries. | ||
|
||
|
||
## Installation | ||
|
||
1. Upload the `xmlimporter` folder in this archive to your Symphony 'extensions' folder | ||
|