function commerce_sagepay_page_build in Drupal Commerce SagePay Integration 7
Implements hook_page_build().
File
- ./
commerce_sagepay.module, line 595
Code
function commerce_sagepay_page_build($page) {
$url = explode('/', current_path());
if (count($url) > 2) {
if ($url[0] == 'checkout') {
drupal_add_js(drupal_get_path('module', 'commerce_sagepay') . '/js/commerce_sagepay_server_iframe.js', array(
'type' => 'file',
'scope' => 'header',
'weight' => -100,
));
}
}
}