如何在drupal中显示文本块?
我正在尝试构建一个模块,允许具有特定角色的用户发布消息,这些消息将为具有不同角色的用户显示。我希望这只是一个处理这两件事的模块,但是,我得到的最多的是设置表单来发布消息。
我想在与输入表单相同的页面上显示发布的消息(并为未经授权的用户隐藏表单),但我只是不知道我必须做什么才能显示消息。显示一些简单的文本有多难?
到目前为止,我已经在菜单中添加了一个项目,该项目链接到带有表单的页面。
I'm trying to build a module that lets users with a certain role post messages that will be displayed for users with a different role. I'd like this to simply be one module that handles both these things, however, the furthest I've gotten is setting up the form to post messages.
I'd like to show the posted messages on the same page as the input form (and hide the form for the unauthorised users), but I just can't figure out what I have to do to show the messages. How hard can it be to display some simple text?
So far I've added an item to the menu that links to the page with a form on it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以利用框模块在线编辑其他用户将看到的文本。如果您选择使用自定义表单,则可以将文本放入块中。
You could make use of the boxes module to have online editing of this text that other users will see. If you're set on Using your custom Form you could put your text in a block.
内容访问模块可让您将给定内容类型的查看权限限制为具有特定角色的用户。
为了设置布局,您可能希望将发布的消息放在一个块中或使用面板。
The Content Access module will let you restrict view permission for a given content type to users having a certain role.
For setting up the layout, you might want to put the posted messages in a block or use Panels.