You are here

function hosting_theme in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 hosting.module \hosting_theme()
  2. 7.3 hosting.module \hosting_theme()

Implementation of hook_theme().

File

./hosting.module, line 354
Hosting module.

Code

function hosting_theme() {
  return array(
    'hosting_queues_configure' => array(
      'file' => 'hosting.module',
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'hosting_feature_dependencies' => array(
      'file' => 'hosting.features.inc',
      'arguments' => array(
        'dependencies' => NULL,
        'prefix' => NULL,
        'features' => NULL,
      ),
    ),
  );
}