获取可用 Drupal 视图的列表
我想为我的 Drupal 模块设置一个配置页面,其中包含一个下拉列表,用户可以在其中选择可用视图之一。有没有一种简单的方法来获取系统上所有可用视图的列表?我所需要的只是所有视图名称的数组。
I'd like to set up a configuration page for my Drupal module that contains a dropdown where the user selects one of the available views. Is there an easy way to obtain a list of all available views on the system? All I need is an array of all the views' names.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 views_all_get_views 函数 ...这会返回一个视图数组,按名称索引,因此您可以将 array_keys() 包装在结果周围以获取名称。
Try the views_all_get_views function ... this returns an array of views, indexed by name, so you could wrap array_keys() around the result to get the names.