You are here

function widgets_get_context_user_uid in Widgets 7

1 call to widgets_get_context_user_uid()
widgets_build_cache_cid in ./widgets.module

File

./widgets.module, line 1336
Exposes global functionality for creating widget sets.

Code

function widgets_get_context_user_uid($context = array()) {
  $uid = $_GLOBAL['user']->uid;
  drupal_alter('widgets_context_user_uid', $uid, $context);
  return $uid;
}