Files
2020-09-23 15:50:29 +02:00

24 lines
511 B
PHP

<?php
/**
* PerfGroupeNodeMigration
*
*/
class PerfDmanuNodeUpdateMigration extends PerfDocsNodeUpdateMigration {
public function __construct() {
$this->description = t('Update Document Manuel Class');
$this->fields = array();
$this->itemsfile = 'baseperf-dmanus.xml';
$this->item_xpath = '/ROOT/ITEMS/DOC_MANUSCRITS'; // relative to document
parent::__construct();
$this->addFieldMapping('nid', 'ID')
->sourceMigration('PerfDmanuNode');
}
}