English 中文(简体)
Zend Framework - pass variable to every controller
原标题:

I m working on multi-tenant application in Zend Framework which gets it s tenantID from the subdomain name (mod_rewrite -> index.php -> matches it against the database).

My question is - how do I set this variable (tenant id) to be available for every Controller?

Leonti

最佳回答

Yes, Zend_Registry can be used for that. Another thing you can do is registering a pre-dispatch controller plugin, which will add the tenantID as a request parameter before any controller receives it:

class YourApp_Plugin_IdWriter extends Zend_Controller_Plugin_Abstract {
    public function preDispatch(Zend_Controller_Request_Abstract $request) {
        $request->setParam( tenantID , ...);
    }
}

You need to register the plugin in your application.ini:

resources.frontController.plugins.access = "YourApp_Plugin_IdWriter"
问题回答

I think Zend_Registry might be the way to go. http://framework.zend.com/manual/en/zend.registry.html Is this is the right way to do it?

Leonti

I think that a front controller plugin that just sets a variable is too much overhead.

A simpler way is to create your base action controller and inherits all others from it.

class MyCompany_Controller_Action extends Zend_Controller_Action
{
    public function preDispatch()
    {
        parent::preDispatch();

        $this->getRequest()->setParam( tenantId , 42);
    }
}

You have another indirect benefit that all your controllers inherits from this base one, so it s easier to add common logic that should be used from all.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签