管理具有不同角色的用户视图 cakephp

发布于 2024-09-30 00:36:28 字数 343 浏览 3 评论 0原文

可能的重复:
当用户具有角色时,我应该如何呈现视图。蛋糕

嗨,我有用户 habtm 角色 问题是,当我登录时,我不知道如何为具有多个角色的用户分离或混合视图......

有什么帮助吗?

你会如何处理这个问题?让用户选择他想扮演的角色?或者混合观点?

不要骄傲...表达自己!

Possible Duplicate:
how should I render views when users habtm roles. cake

hi i got users habtm roles
the thing is when i login i dont know how to separate or mix the views for users that have more than one role...

any help?

how would you manage this issue? by letting the user select which role he wants to play? or mixing the views?

dont be cocky... express yourself!

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

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

发布评论

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

评论(1

懒猫 2024-10-07 00:36:28

您可以为每个级别的用户设置一个单独的目录。

使用以下命令设置视图路径

    $this->viewPath = 'users' . DS. $privLevel

,以便您可以在一堆目录中的每个目录中创建视图文件的不同副本

/users/1/view.ctp
/users/2/view.ctp
/users/3/view.ctp
/users/4/view.ctp
...

You could have a seperate directory for each level of user.

Use the following command to set the view path

    $this->viewPath = 'users' . DS. $privLevel

so then you can make a have a different copy of your view files in each of a bunch of directories

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