You are here

function wsconfig_theme in Web Service Data 7

Implements hook_theme().

File

modules/wsconfig/wsconfig.module, line 219
Main module for wsconfig

Code

function wsconfig_theme($existing, $type, $theme, $path) {
  return array(
    'wsconfig_add_list' => array(
      'variables' => array(
        'content' => array(),
      ),
      'file' => 'wsconfig.admin.inc',
    ),
    'wsconfig' => array(
      'render element' => 'elements',
      'template' => 'wsconfig',
    ),
    'wsconfig_sample_data' => array(
      'variables' => array(
        'wsconfig_sample_data',
        'wsconfig' => NULL,
      ),
      'template' => 'wsconfig-sample-data',
    ),
  );
}