Skip to content

Instantly share code, notes, and snippets.

@gwarnants
Last active February 11, 2016 14:08
Show Gist options
  • Save gwarnants/64c13183000e0127472b to your computer and use it in GitHub Desktop.
Save gwarnants/64c13183000e0127472b to your computer and use it in GitHub Desktop.
Drupal admin menu shortcut
<?php
/**
* Implements hook_menu().
*/
function foobar_menu() {
$items['admin/add-image-style'] = array(
'title' => 'Shortcut to add image style',
'page callback' => 'drupal_goto',
'page arguments' => array('/admin/config/media/image-styles/add'),
'access callback' => 'user_access',
'access arguments' => array(),
);
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment