php CakePHP 管理面板
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1926252/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
CakePHP admin panel
提问by ab.
I am new to CakePHP and want an admin panel on my custom CMS for a client. Is there any way other than just linking to an admin page to each controller that I can pull views from other controllers such as users and posts?
我是 CakePHP 的新手,希望在我的自定义 CMS 上为客户端设置一个管理面板。除了链接到每个控制器的管理页面之外,还有什么方法可以从其他控制器(例如用户和帖子)中提取视图?
采纳答案by Steven smethurst
Here is a great article on creating a admin section for CakePHP Creating an Admin Section with CakePHP
回答by happyhardik
BrowniePHPcould be helpful. Its a plugin for CakePHP that will save you time on backend development work.
BrowniePHP可能会有所帮助。它是 CakePHP 的一个插件,可以节省您在后端开发工作上的时间。
回答by Sarfraz
The better and cleaner way will be to put all your pages of admin under controllers. For example: controllers/admin
更好、更简洁的方法是将您所有的管理页面置于控制器之下。例如:控制器/管理员
回答by bancer
You can try PoundCake Control Panel. It is still in beta but may be useful.
您可以尝试PoundCake 控制面板。它仍处于测试阶段,但可能有用。
回答by Robin
The easiest and fasted way to add an admin panel to cakephp is to use a plugin: https://github.com/Maldicore/Admin
将管理面板添加到 cakephp 的最简单快捷的方法是使用插件:https: //github.com/Maldicore/Admin
回答by user3436247
This is very detailed and a great article on how to create an admin panel in cakephp - Cakephp 3 admin panel-Cakephp admin backend
这是一篇关于如何在 cakephp 中创建管理面板的非常详细和很棒的文章 - Cakephp 3 管理面板-Cakephp 管理后端

