You are here

function msnf_theme in Multistep Nodeform 6

Same name and namespace in other branches
  1. 7 msnf.module \msnf_theme()

Implementation of hook_theme().

See also

theme/theme.inc.

File

./msnf.module, line 66
Main functions for module "Multistep Nodeform".

Code

function msnf_theme($existing, $type, $theme, $path) {
  $path = drupal_get_path('module', 'msnf') . '/theme';
  require_once "./{$path}/theme.inc";
  return array(
    'msnf_step_overview_form' => array(
      'template' => 'msnf-admin-step-overview-form',
      'file' => 'theme.inc',
      'path' => $path,
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}