You are here

function hosting_site_theme in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 site/hosting_site.module \hosting_site_theme()
  2. 7.3 site/hosting_site.module \hosting_site_theme()

Implements hook_theme().

File

site/hosting_site.module, line 99
Contains hook implementations for Hosting site module.

Code

function hosting_site_theme($existing, $type, $theme, $path) {
  $items = array();
  $items['hosting_site_profile'] = array(
    'arguments' => array(
      'profile' => NULL,
      'html' => FALSE,
    ),
  );
  $items['hosting_site_goto_link'] = array(
    'arguments' => array(
      'title' => NULL,
      'url' => NULL,
    ),
  );
  return $items;
}