public function WordPressBlog::migrationClasses in WordPress Migrate 7
Same name and namespace in other branches
- 7.2 wordpress.inc \WordPressBlog::migrationClasses()
The implemented WordPress migrations, in the order they should be run.
3 calls to WordPressBlog::migrationClasses()
File
- ./
wordpress.inc, line 155 - Implementation of migration from WordPress into Drupal
Class
Code
public function migrationClasses() {
return array(
'WordPressCategory' => 'WordPressCategory',
'WordPressTag' => 'WordPressTag',
'WordPressBlogEntry' => 'WordPressBlogEntry',
'WordPressPage' => 'WordPressPage',
'WordPressAttachment' => 'WordPressAttachment',
'WordPressComment' => 'WordPressComment',
);
}