You are here

function update_advanced_theme in Update Status Advanced Settings 6

Same name and namespace in other branches
  1. 7 update_advanced.module \update_advanced_theme()

Implementation of hook_theme().

File

./update_advanced.module, line 19
Provides advanced settings for the Update status module in core.

Code

function update_advanced_theme() {
  return array(
    'update_advanced_settings' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}