隐藏“已创建新论坛 XXX” Drupal 中的消息
每次我使用 API 创建新论坛时,都会出现以下消息:
创建了新论坛等等
出现(状态消息)。
我可以压制它吗?也许有一个钩子?
Every time I create a new forum using the API, the message:
Created new forum blah blah
appears (status message).
Can I suppress it? maybe with a hook?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用禁用消息模块以非编程方式执行此操作
You could do this non-programmatically by using the Disable Messages module
有一个模块可以创建一个可用于更改消息的钩子。 http://drupal.org/project/messages_alter
我认为它适合您的用例,但是如果您需要它没有提供的东西或者只是想推出您自己的选项:快速浏览该模块将为您提供有关如何在需要时创建自己的实现的想法。
老实说,我不记得为什么我们自己这样做,而不是使用模块,但这里有一些非常简单的示例代码。
主题功能:
There is a module that creates a hook that you can use to alter messages. http://drupal.org/project/messages_alter
I think that it would work for your use case, however if you need something it doesn't offer or just want to roll your own option: A quick look at the module will give you ideas on how you can create your own implementation if you need it.
I honestly can't remember why we did it ourselves, instead of using the module, but here is some really simple example code.
Theme Function:
压制股票消息是一件痛苦的事情,但这是可以做到的。我很确定一个好方法是
在您的主题中设置“function template_preprocess_page(&$variables)”并在 $variables 上执行 print_r 。我非常确定即将在页面上呈现的所有消息都将在该数组中的某个位置可用,您只需取消设置那些您不想将其一直添加到页面模板的消息即可。
It is a pain to suppress the stock messages but it can be done. I'm pretty sure a good way is to make 'function template_preprocess_page(&$variables)'
Set that up in your theme and do a print_r on $variables. I'm pretty sure all the messages that are about to be rendered on the page will be available somewhere in that array and you can just unset the ones you don't want to make it all the way to the page template.