You are here

function ace_editor_library_installed in Ace Code Editor 7

Returns if the library is installed.

3 calls to ace_editor_library_installed()
ace_editor_form_alter in ./ace_editor.module
Implements hook_form_alter().
ace_editor_init in ./ace_editor.module
Implements hook_init().
drush_ace_editor_post_pm_enable in ./ace_editor.drush.inc
Implements drush_MODULE_post_COMMAND().

File

./ace_editor.module, line 589
Ace Editor module.

Code

function ace_editor_library_installed() {
  $library = libraries_detect('ace');
  return isset($library['installed']) && $library['installed'];
}