You are here

function me_category_load in me aliases 6.2

Same name and namespace in other branches
  1. 8 me.module \me_category_load()
  2. 6 me.module \me_category_load()
  3. 7 me.module \me_category_load()

Menu load callback in place of user_category_load().

File

./me.module, line 432
Provides 'me' aliases to allow users to enter 'me' in common paths instead of their user id.

Code

function me_category_load($uid, &$map = NULL, $index = NULL, $map_index = FALSE) {
  $args = func_get_args();
  return _me_load_arguments($uid, $map, $index, $map_index, $args, 'user_category_load');
}