PHP 中有一个好的基于角色的工作流引擎吗?
我正在寻找允许简单配置的基于角色的访问和工作流程引擎。
I am looking for role based access and work flow engine that allows for simple configuration.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我使用 Zend Framework,所以我想创建 auth/roles/resources/acl,我将使用相应的类
确定是否允许用户(角色)访问对于资源,执行类似
上面的操作
i use the Zend Framework, so i guess to create auth/roles/resources/acl, i will use the respective classes
to determine if a user (role) is allowed access to a resource, do something like
something like above
我推荐 ezComponents 工作流程。 我们使用它构建了一个内部网应用程序,它非常易于使用。 该文档非常棒,并且拥有非常活跃的社区。
更新:ezComponents 现在作为 Zeta 组件
I would recommend ezComponents workflow. We built an intranet application using it and it was quite easy to use. The documentation is awesome and it has very active community.
Update: ezComponents now lives on as Zeta Components
您的意思是一个可以让角色变得简单的 php 框架吗? 我建议使用 Symfony。 示例 security.yml 文件看起来像
安全文件也会级联,因此您可以将其放在最高级别(应用程序级别)并在模块或页面级别覆盖它。
还是我完全不在状态了?
Do you mean a php framework that'll make roles easy ? I'd suggest Symfony. A sample security.yml file looks like
The security files also cascade, so you can put this on the highest level (App level) and override it on a module or page level.
Or am I totally off ?
PHP acl 对我来说效果非常好。 一些开源项目正在使用它,例如 joomla,而 cakephp 则采用代码模型来使其成为自己的 acl 系统
PHP acl worked really well for me. several open source projects are using it like joomla, in the other hand cakephp take the code model to make it own acl system
托尼·马斯顿 (Tony Marston) 有一个,也许你可以联系他:
http://www.tonymarston.net/php-mysql/workflow.html
Tony Marston has one, maybe you could contact him:
http://www.tonymarston.net/php-mysql/workflow.html