You are here

function ckeditor_swf_getid3_load in CKEditor SWF - Enhanced Flash embedding plugin 7

Same name and namespace in other branches
  1. 6.2 ckeditor_swf.module \ckeditor_swf_getid3_load()
1 call to ckeditor_swf_getid3_load()
ckeditor_swf_getid3_analyze in ./ckeditor_swf.module

File

./ckeditor_swf.module, line 327
Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr

Code

function ckeditor_swf_getid3_load() {
  static $success;
  if (!isset($success)) {
    $success = FALSE;

    // Let's rely on the getID3() module to ensure getID3 is properly installed and configured.
    if (module_exists('getid3') && getid3_load(FALSE)) {
      $success = TRUE;
    }
  }
  return $success;
}