Yanıtlar:
Bir modülde hook_js_alter () kullanabilirsiniz . Örneğin, bu kod Drupal tarafından kullanılan jQuery kitaplığının yerini jquery_update dizininde bulunan dosyayla değiştirir.
function jquery_update_js_alter(&$javascript) {
// Swap out jQuery to use an updated version of the library.
$javascript['misc/jquery.js']['data'] = drupal_get_path('module', 'jquery_update') . '/jquery.js';
}
Aynı şey satır içi JavaScript kodu için de yapılabilir. Farklılıklar:
'misc/jquery.js'
, ilk dizin bir sayıdır$javascript[$index]['data']
JavaScript kodunu içerecekBu, önce JavaScript kodunun değiştirileceği girişi bulmanız ve daha sonra değiştirmeniz gerektiği anlamına gelir. Bu durumda aşağıdaki kod çalışmalıdır.
function mymodule_js_alter(&$javascript) {
$old_code = 'The code to alter';
$new_code = 'The new code';
foreach ($javascript as $index => $info) {
if (is_numeric($index) && $info['data'] == $old_code) {
$javascript[$index]['data'] = $new_code;
break;
}
}
}
Alternatif olarak, bir modül tarafından uygulanan kitaplığı değiştirmeniz gerekirse hook_library_alter () uygulayabilirsiniz . Örneğin, bu, jQuery Güncelleme modülünün en son sürümü tarafından uygulanan koddur .
function jquery_update_library_alter(&$javascript, $module) {
// We are updating just the system module. For all other cases we return.
if ($module != 'system') {
return;
}
$path = drupal_get_path('module', 'jquery_update');
// Make sure we inject either the minified or uncompressed version as desired.
$min = variable_get('jquery_update_compression_type', 'min') == 'none' ? '' : '.min';
$cdn = variable_get('jquery_update_jquery_cdn', 'none');
// Replace jQuery with the latest version.
$version = variable_get('jquery_update_jquery_version', '1.5');
jquery_update_jquery_replace($javascript, $cdn, $path, $min, $version);
// Replace jQuery UI with CDN or local files. If from a CDN include all of jQuery UI.
jquery_update_jqueryui_replace($javascript, $cdn, $path, $min);
// Replace the jQuery Cookie plugin.
$javascript['cookie']['js']['misc/jquery.cookie.js']['data'] = $path . '/replace/ui/external/jquery.cookie.js';
// Noting the version based on git commit as no version number is available.
$javascript['cookie']['version'] = '67fb34f6a866c40d0570';
// Replace jQuery Form plugin.
$javascript['jquery.form']['js']['misc/jquery.form.js']['data'] = $path . '/replace/misc/jquery.form' . $min . '.js';
$javascript['jquery.form']['version'] = '2.69';
// Replace files for jQuery 1.7 and up
if (version_compare($version, '1.7', '>=')) {
$javascript['drupal.states']['js']['misc/states.js']['data'] = $path . '/replace/misc/1.7/states.js';
}
}
Bu, Drupal core tarafından kullanılan JavaScript kodu için de geçerlidir, çünkü bu JavaScript dosyaları için Sistem modülü hook_library () uygular . (Bkz. System_library () .)
hook_js_alter()
Drupal çekirdeği tarafından kullanılan dosyalar için bile herhangi bir JavaScript dosyası / kodu için kullanılabilir. JavaScript dosyaları kitaplık olarak açığa çıktığında, hook_js_alter()
ve arasında hook_library_alter()
tercih edilir.