You are here

function widgets_set_error in Widgets 7

File

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

Code

function widgets_set_error($name, $msg = '', $status = 'warning') {
  if ($msg) {
    drupal_set_message($msg, $status);
  }
  return _widgets_error($name, 'set');
}