You are here

function skinr_ui_admin_library in Skinr 7.2

Menu callback for admin/structure/block.

Parameters

$theme: The theme to display the administration page for. If not provided, defaults to the currently used theme.

1 string reference to 'skinr_ui_admin_library'
skinr_ui_menu in ./skinr_ui.module
Implements hook_menu().

File

./skinr_ui.admin.inc, line 628
Admin page callbacks for the Skinr UI module.

Code

function skinr_ui_admin_library($theme = NULL) {
  global $theme_key;
  drupal_theme_initialize();
  if (!isset($theme)) {

    // If theme is not specifically set, rehash for the current theme.
    $theme = $theme_key;
  }
  return drupal_get_form('skinr_ui_admin_library_form', $theme);
}