You are here

function form_styler_plugin_loaded in jQuery form styler 7.2

Same name and namespace in other branches
  1. 7 form_styler.module \form_styler_plugin_loaded()

Check if the backstretch libraries have been loaded.

Return value

bool A boolean indicating the loaded status.

File

./form_styler.module, line 56
Attach jQuery form styler plugin to selected forms.

Code

function form_styler_plugin_loaded() {
  $jquery_form_styler = libraries_load('jquery_form_styler');
  return !empty($jquery_form_styler['loaded']);
}