You are here

public function MigratePageTitleNodeHandler::fields in Migrate Extras 6.2

Make the destination field visible.

File

./page_title.inc, line 16
Support for titles into the Page Title module.

Class

MigratePageTitleNodeHandler
@file Support for titles into the Page Title module.

Code

public function fields() {
  if (module_exists('page_title')) {
    return array(
      'page_title' => t('Page Title: Title for <title> tag'),
    );
  }
  else {
    return array();
  }
}