如何更改 Drupal 中 ctools 模式窗口标题的格式?

发布于 2024-11-14 02:47:46 字数 124 浏览 3 评论 0原文

我有一个标准的 ctools 模式窗口。我可以设置标题部分标题文本的样式,并自定义该文本,但我想更改标题的右侧,其中包含“关闭窗口”和 X 图标。

具体来说,我想使用不同的 X 图标并删除文本“关闭窗口”。我该怎么做?

I have a a standard ctools modal window. I am able to style the header section title text, and customize that text, but I want to change the right side of the header which has "Close window" and an X icon.

Specifically, I want to use a different X icon and remove the text "Close window". How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哀由 2024-11-21 02:47:46

您可以更改 hook_preprocess_html 函数中的设置

drupal_add_js(array(
  'CToolsModal' => array(
    'closeImage' => theme('image', array(
      'path' => drupal_get_path('theme', 'mytheme') . ('/img/modal_close.png'),
      'title' => t('Close window'),
      'alt' => t('Close window'),
    )),
)), 'setting');

You can alter the settings in hook_preprocess_html function

drupal_add_js(array(
  'CToolsModal' => array(
    'closeImage' => theme('image', array(
      'path' => drupal_get_path('theme', 'mytheme') . ('/img/modal_close.png'),
      'title' => t('Close window'),
      'alt' => t('Close window'),
    )),
)), 'setting');
悲凉≈ 2024-11-21 02:47:46

我创建了一个新的 x 图标,然后进入 ctools 图像文件夹并替换了 icon-close-window.png (旧的 x ) 和我的新 x

I created a new x icon and then went in to the ctools image folder and replaced the icon-close-window.png (the old x) with my new x.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文