Created
April 17, 2013 12:03
-
-
Save phpfiddle/5403716 to your computer and use it in GitHub Desktop.
Всякое там
This file contains hidden or 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
<?php | |
class YourHandler extends MigrateDestinationHandler { | |
public function __construct() { | |
$this->registerTypes(array('node')); // тут типа регистрируешься для нодов | |
} | |
public function prepare($entity, stdClass $row) { | |
// это чтобы бить прицельно по типам данных | |
if (in_array($entity->type, array('eanews', 'eainterview', 'ealinksdossier', 'eaopinion'))) { | |
// тут хренячишь что надо в $entity | |
} | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment