function ckeditor_swf_getid3_load in CKEditor SWF - Enhanced Flash embedding plugin 6.2
Same name and namespace in other branches
- 7 ckeditor_swf.module \ckeditor_swf_getid3_load()
1 call to ckeditor_swf_getid3_load()
File
- ./
ckeditor_swf.module, line 344 - 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;
}