function jquerymobile_init in jQuery Mobile module 7.2
Implements hook_init().
File
- ./
jquerymobile.module, line 13
Code
function jquerymobile_init() {
foreach (module_list() as $module) {
if (is_file(drupal_get_path('module', 'jquerymobile') . '/modules/' . str_replace('_', '-', $module) . '.inc')) {
require_once drupal_get_path('module', 'jquerymobile') . '/modules/' . str_replace('_', '-', $module) . '.inc';
}
}
}