You are here

page_title.inc in Node import 5

Support file for the page_title module.

File

supported/page_title.inc
View source
<?php

/**
 * @file
 * Support file for the page_title module.
 */

/**
 * Implementation of hook_node_import_fields().
 */
function page_title_node_import_fields($type) {
  return array(
    'page_title' => t('Page title'),
  );
}

Functions