如何从数据库动态写入路由前缀

发布于 2024-11-01 21:09:27 字数 447 浏览 1 评论 0原文


我有带有前缀的数据库表,并且需要它们在 app_controller beforeFilter 中可读 $prefix_array = array('admin', '营销');
if ($this->Auth->user() AND in_array(@$this->params['prefix'], $prefix_array)) { $this->layout = 'admin'; } } else { $this->layout = 'default';}

- 我应该在 bootstrap 或 app_controller 中哪里做?
-如何从数据库动态读取前缀,设置为 $prefix_array
-将它们写入Configure::write('Routing.prefixes')

i have db table with the prefixes and need them to be readable in app_controller beforeFilter
$prefix_array = array('admin', 'marketing');
if ($this->Auth->user() AND in_array(@$this->params['prefix'], $prefix_array)) { $this->layout = 'admin'; } else { $this->layout = 'default';}

-where should i do it in bootstrap or app_controller?
-how can i dynamically read prefix from DB, set to $prefix_array
-write them to Configure::write('Routing.prefixes')

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

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

发布评论

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

评论(1

孤者何惧 2024-11-08 21:09:27

在您的应用程序控制器中,只需加载前缀:

var $uses = array('Prefix');

function beforeFilter() {
    $prefixes = $this->Prefix->find('list');
    if($this->Auth->user() && in_array($this->params['prefix'], $prefixes) {
        $this->layout = 'admin';
    }
}

In your app controller, just load the prefixes:

var $uses = array('Prefix');

function beforeFilter() {
    $prefixes = $this->Prefix->find('list');
    if($this->Auth->user() && in_array($this->params['prefix'], $prefixes) {
        $this->layout = 'admin';
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文