You are here

function gathercontent_theme in GatherContent 7.2

Same name and namespace in other branches
  1. 7.3 gathercontent.theme.inc \gathercontent_theme()

Implements hook_theme().

File

./gathercontent.module, line 182
Imports pages from GatherContent (http://gathercontent.com/) into Drupal as nodes.

Code

function gathercontent_theme() {
  $path = drupal_get_path('module', 'gathercontent') . '/includes';
  return array(
    'gathercontent_pages_form' => array(
      'render element' => 'form',
      'file' => 'pages.inc',
      'path' => $path,
    ),
    'gathercontent_pages_import_form' => array(
      'render element' => 'form',
      'file' => 'pages_import.inc',
      'path' => $path,
    ),
  );
}