1234567891011121314151617181920212223 |
- <?php
- /**
- * PerfGroupeNodeMigration
- *
- */
- class PerfGroupeNodeMigration extends PerfBasicMigration {
- public function __construct() {
-
- $this->item_xpath = '/RACINE/ARBRE/INITIALE/GROUPE/PERFORMANCE'; // relative to document
- parent::__construct();
-
- $this->description = t('XML feed of groupe of performances');
- // $this->dependencies = array('WineRegion', 'WineUser');
- }
- // public function prepareRow($row){
- // parent::prepareRow($row);
- // }
-
-
- }
|