expressionengine 自定义会员级别
我正在使用表达式引擎构建我的第一个网站,并且需要创建像这样工作的成员:
他们可以注册并设置为待处理状态。注册后,管理员将能够选择成员并将权限分配给多个频道,他们将能够在前端查看额外的内容。
我不知道从哪里开始处理这个问题并接受建议。
我也很好奇,当设置成员权限时,我们如何以及在哪里访问前端模板中的变量并交叉引用以获取可用资源的 id?
I'm building my first site using expressionengine and need to create members that work like this:
they can register and set into a pending state. once registered, admin will be able to select members and assign permissions to multiple channels where they will be able to view extra content on the front end.
I'm not sure where to begin looking to handle this and open to suggestions.
I'm also curious, when a members permissions get set, how and where do we access the variables in the front end template and cross reference to get an id of available resources?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以首先阅读会员管理模块(非常好):http: //expressionengine.com/user_guide/modules/member/overview.html
您需要创建一个注册表单,将成员分配到“待定”成员组(您可以通过要求新成员签名来完成此操作) ups 须经管理员批准)。之后,管理员可以登录 EE 后端并将新成员分配到适当的成员组(您还必须为其创建并指定权限)。
通过编辑模板的访问首选项,可以在每个模板和每个成员组的基础上切换模板/页面可见性。有关此内容的文档位于此处(向下滚动到“访问”标题):http: //expressionengine.com/user_guide/cp/design/templates/edit_template.html
You can start by reading up on the Member Management Module (which is pretty good) at: http://expressionengine.com/user_guide/modules/member/overview.html
You'll need to create a sign up form that assigns members to a 'pending' member group (you can do this by requiring that new member sign ups be approved by an administrator). After that, an admin can sign into the EE backend and assign the new member to the appropriate member group (which you'll also have to create and specify permissions for).
Template/page visibility can be toggle on a per template and per member group basis by editing the access preference for the template. The documentation for this is here (scroll down to the 'Access' heading): http://expressionengine.com/user_guide/cp/design/templates/edit_template.html