Skip to content

Instantly share code, notes, and snippets.

@init90
Created July 24, 2018 08:55
Show Gist options
  • Save init90/02d94187400b715b42494ed691b823f3 to your computer and use it in GitHub Desktop.
Save init90/02d94187400b715b42494ed691b823f3 to your computer and use it in GitHub Desktop.
Drupal 7, set patch as admin.
/**
* Implements hook_admin_paths().
*/
function global_price_table_admin_paths() {
$paths = array(
'node/*/global_price_table' => TRUE,
);
return $paths;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment