You are here

public function WordPressBlog::migrationClasses in WordPress Migrate 7.2

Same name and namespace in other branches
  1. 7 wordpress.inc \WordPressBlog::migrationClasses()

The implemented WordPress migrations, in the order they should be run.

2 calls to WordPressBlog::migrationClasses()
WordPressBlog::machineName in ./wordpress.inc
WordPressBlog::migrations in ./wordpress.inc
Get a list of all migrations in this blog.

File

./wordpress.inc, line 291
Implementation of migration from WordPress into Drupal

Class

WordPressBlog

Code

public function migrationClasses() {
  return array(
    'WordPressAuthor' => 'WordPressAuthor',
    'WordPressCategory' => 'WordPressCategory',
    'WordPressTag' => 'WordPressTag',
    'WordPressBlogEntry' => 'WordPressBlogEntry',
    'WordPressPage' => 'WordPressPage',
    'WordPressAttachment' => 'WordPressAttachment',
    'WordPressComment' => 'WordPressComment',
  );
}