You are here

function hosting_theme in Hosting 7.4

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

Implements hook_theme().

File

./hosting.module, line 541
Hosting module.

Code

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