You are here

protected function WordPressMigrateWizard::contentPageForm in WordPress Migrate 7.2

File

./wordpress_migrate.migrate.inc, line 423

Class

WordPressMigrateWizard

Code

protected function contentPageForm(&$form_state) {
  $form['overview'] = array(
    '#prefix' => '<p>',
    '#markup' => t('There are several options you may set for the import of
        WordPress pages.'),
    '#suffix' => '</p>',
  );
  return $form + $this
    ->contentForm($form_state, $this->contentValues['page']['page_type']);
}