You are here

function libraries_mobile_codes_default_mobile_codes_provider_alter in Mobile Codes 7.2

Same name and namespace in other branches
  1. 6.2 includes/libraries.inc \libraries_mobile_codes_default_mobile_codes_provider_alter()

Implements hook_mobile_codes_default_mobile_codes_provider_alter() on behalf of libraries.inc.

File

includes/libraries.inc, line 45
Libraries module integration.

Code

function libraries_mobile_codes_default_mobile_codes_provider_alter(&$export) {
  foreach (_mobile_codes_get_libraries() as $library => $file) {
    if (function_exists($function = "mobile_codes_libraries_{$library}_default_mobile_codes_provider_alter")) {
      $function($export);
    }
  }
}