You are here

function vud_widget_get in Vote Up/Down 6.2

Same name and namespace in other branches
  1. 6.3 vud.theme.inc \vud_widget_get()
  2. 7.2 vud.theme.inc \vud_widget_get()
  3. 7 vud.theme.inc \vud_widget_get()

Load metadata for a single widget without loading all widgets.

3 calls to vud_widget_get()
vud_vote in ./vud.theme.inc
Function for the main voting handler with Ajax support.
vud_votes_proxy in ./vud.theme.inc
Proxy votes display function, that hook_theme() calls.
vud_widget_proxy in ./vud.theme.inc
Proxy widget function that hook_theme() calls.

File

./vud.theme.inc, line 41
Theme functions

Code

function vud_widget_get($name) {
  ctools_include('plugins');
  return ctools_get_plugins('vud', 'widgets', $name);
}