You are here

function uc_store_configuration_page in Ubercart 7.3

Same name and namespace in other branches
  1. 5 uc_store/uc_store.module \uc_store_configuration_page()
  2. 6.2 uc_store/uc_store.admin.inc \uc_store_configuration_page()

Displays store configuration page.

1 string reference to 'uc_store_configuration_page'
uc_store_menu in uc_store/uc_store.module
Implements hook_menu().

File

uc_store/uc_store.admin.inc, line 105
Store administration menu items.

Code

function uc_store_configuration_page() {
  $menu = menu_get_item('admin/store/settings');
  $content = system_admin_menu_block($menu);
  $build['menu'] = array(
    '#theme' => 'admin_block_content',
    '#content' => $content,
  );
  return $build;
}