使用主题预处理将js添加到模板文件中

时间:2013-05-07 11:07:45

标签: drupal drupal-7 drupal-theming

我有一个自定义的Drupal 7模块,该模块挂钩到media模块,我在向渲染中添加一些js时遇到了麻烦。

该模块正在定义一个这样的主题:

function media_flash_theme($existing, $type, $theme, $path) {
  return array(
    'media_flash_video' => array(
      'variables' => array('uri' => NULL, 'options' => array()),
      'file' => 'media_flash.theme.inc',
      'path' => $path . '/includes/themes',
      'template' => 'media-flash',
    )
  );
}

我的格式化程序(视图)正在返回我的元素:

$element = array(
  '#theme' => 'media_flash_video',
  '#uri' => $file->uri,
  '#options' => array(),
);

return $element;

现在,我有一个预处理函数,它添加了一些js:

function media_flash_preprocess_media_flash_video(&$variables) {

  $path = libraries_get_path('swfobject');
  drupal_add_js($path . '/swfobject.js');

  ...
}

还有一个drupal在我的模板文件中添加js:

/**
 * @file media_flash/includes/themes/media-flash.tpl.php
 */


$javascript = '
(function ($) {
...
})(jQuery);
';

drupal_add_js($javascript, 'inline');

这个问题很奇怪。当我登录时,一切都运行正常。但是,当我将它用作匿名用户时,它在第一次加载时都能很好地工作(在缓存清除之后),但之后不再添加两个javascripts。

我试图更改我的预处理功能,因此它会添加带有此$variables['scripts'] = drupal_get_js();的javascript,但这也有相同的行为。

我已经搜索了一下并发现了一些建议但到目前为止还没有任何效果。任何帮助表示赞赏。

谢谢,

编辑:所以我对此进行了更多研究,代码正在通过过滤器模块执行。似乎第一次执行它会被缓存,然后每次都会从缓存中收到它,因此drupal_add_js代码不再运行。

有没有办法绕过这个缓存,还是我需要从这部分中删除我的js?

1 个答案:

答案 0 :(得分:0)

您始终可以在页面级别添加js" hook_page_alter(& $ page)"