Codeigniter 管理模板
大家好,我正在使用这个模板系统 http://williamsconcepts.com/ci/codeigniter/libraries/template/index.html
但现在我想为其添加一个管理系统,你会怎么做?
在控制器/模型中制作地图并调用“admin”查看,但是我如何才能使用模板系统而不发生冲突:O?
你知道更好的方法吗,如果你能告诉我,我会很高兴:)
非常感谢
Hello all im using this template system
http://williamsconcepts.com/ci/codeigniter/libraries/template/index.html
but now i want to add a admin system to it, how would you do that?
make a map in controller/model and view calling "admin" but how can i then use the template system without conflicts :O?.
do you know a better way i will be glad if you will tell :)
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以创建一个名为
admin
的视图和一个名为admin
的控制器;不会有任何冲突。使用模板库,您将需要执行以下操作:
在 config/template.php 中
,然后在管理控制器中:
Yes, you can create a view called
admin
and a controller calledadmin
; there will be no conflicts.Using a template library, you will want to do something like this:
In config/template.php
then in your admin controller:
我设置了通过 /admin 的路线,管理员的操作位于 /views/admin/modelname
我还使用了 TankAuth,它非常好。
i set up my routes to go through /admin and the actions that are for admins are in /views/admin/modelname
I also use tankAuth it's very good.