Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions uc_order/uc_order.module
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ function uc_order_menu() {
'access arguments' => array('view customers'),
'weight' => -9,
'file' => 'uc_order.admin.inc',
'position' => 'left',
);
// admin/store/customers/view is provided by Views.
// admin/store/customers/orders/% is provided by Views.
Expand Down Expand Up @@ -71,6 +72,7 @@ function uc_order_menu() {
'access arguments' => array('view all orders'),
'weight' => -8,
'file' => 'uc_order.admin.inc',
'position' => 'left',
);
// admin/store/orders/view is provided by Views.
$items['admin/store/orders/create'] = array(
Expand Down
4 changes: 2 additions & 2 deletions uc_store/uc_store.module
Original file line number Diff line number Diff line change
Expand Up @@ -174,14 +174,14 @@ function uc_store_menu() {
'access arguments' => array('view reports'),
'weight' => 2,
'file' => 'uc_store.admin.inc',
'position' => 'right',
'position' => 'left',
);
$items['admin/store/settings'] = array(
'title' => 'Configuration',
'description' => 'Adjust configuration settings for Ubercart.',
'page callback' => 'uc_store_configuration_page',
'access arguments' => array('administer store'),
'weight' => -10,
'weight' => 10,
'file' => 'uc_store.admin.inc',
'position' => 'right',
);
Expand Down