views:

11

answers:

1

Hello,

From a header.php layout we can give instructions based on a given controller by doing:

$this->controller === "mycontrollerhere";

Can we do more or less the same but with a specific controller Action ?

Thanks in advance, MEM

+1  A: 

Not totally sure what you're after but the front controller request object contains the names of the requested module, controller and action.

Phil Brown
That should do it. thanks.
MEM