You are here

function vud_width_plugin_defaults in Vote Up/Down 6.2

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

Provide defaults for widgets.

1 string reference to 'vud_width_plugin_defaults'
vud_ctools_plugin_widgets in ./vud.theme.inc
Implementation of hook_ctools_plugin_*.

File

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

Code

function vud_width_plugin_defaults($info, &$plugin) {
  $defaults = array(
    'render function' => 'theme_render_template',
    'extension' => '.tpl.php',
    'css' => $plugin['name'] . '.css',
  );
  $plugin += $defaults;
}