function emthumb_menu in Embedded Media Field 6.3
Same name and namespace in other branches
- 5 contrib/emthumb/emthumb.module \emthumb_menu()
- 6.2 contrib/emthumb/emthumb.module \emthumb_menu()
Implementation of hook_menu().
File
- contrib/
emthumb/ emthumb.module, line 11 - Allows for custom thumbnail overrides to Embedded Media Field.
Code
function emthumb_menu() {
$items['emthumb/js/%/%/%'] = array(
'page callback' => 'emthumb_upload_js',
'page arguments' => array(
2,
3,
4,
),
'access callback' => 'emthumb_edit_access',
'access arguments' => array(
3,
),
'type' => MENU_CALLBACK,
);
return $items;
}