Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 524027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:31:29+00:00 2026-05-13T08:31:29+00:00

I currently have Zend setup to look for a layout script in each module’s

  • 0

I currently have Zend setup to look for a layout script in each module’s view/scripts/layout.phtml file (ie: /application/modules/moduleName/scripts/layout.phtml). This is by setting layout[] to nothing (blank) in the application.ini file (resources.layout[] = )

The issue is that many modules may share the same layout. I don’t want to copy the same exact layout into each module that uses it. I know I can set everything to use one layout script by setting a specific path like resources.layout.layoutpath = /layoutPath and everything would use /layoutpath/layout.phtml, and I know I can set individual pages (or whole Controllers, in the init) by using $this->_helper->layout->setLayout('foobaz');

The issue is that some modules will have different layouts, other than the ‘standard’ one, and I don’t want to set it on a by Controller or by Action basis. I want to set it for the entire module, set in one place (or intuitively figured out by code/Zend automatically). Ideally, it would be setup how it is currently, but if a module doesn’t have its own layout.phtml, it would use the default module’s layout.

So… how do I do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T08:31:29+00:00Added an answer on May 13, 2026 at 8:31 am

    There are several solutions, choose their own strategy

    1 extending the action controller

    class App_Controller_Action extends Zend_Controller_Action 
    {
    
        public function init()
        {
            parent::init();
    
            $moduleName = $this->getRequest()->getModuleName();
            $layoutPath = APPLICATION_PATH . '/modules/' . $moduleName . '/layouts';
            if (is_dir($layoutPath)) {
                $this->view->addScriptPath($layoutPath);
            }    
        }
     }
    

    and then do as usual IndexController extends App_Controller_Action ...
    if layout file exists in APPLICATION_PATH . '/modules/' . $moduleName . '/layouts' directory – it will ne used instead of default layout

    2 you can write frontcontroller plugin

    class App_Controller_Plugin_ModuleSwitcher extends Zend_Controller_Plugin_Abstract
     {
         protected $_view = null;
    
         public function routeShutdown(Zend_Controller_Request_Abstract $request)
         {
             $moduleName = $request->getModuleName();
    
             Zend_Layout::startMvc();
             $layout = Zend_Layout::getMvcInstance();
             $layout->setLayoutPath(APPLICATION_PATH . '/modules/' . $moduleName . '/layouts')->setLayout($moduleName);
    
             return $request;
         }
     }
    

    and dont forget to google for another solutions 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 368k
  • Answers 368k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Here's a kickoff example, you can copy'n'paste'n'run it. <!doctype html>… May 14, 2026 at 6:06 pm
  • Editorial Team
    Editorial Team added an answer Here is a short introduction to game programming on X-Windows… May 14, 2026 at 6:06 pm
  • Editorial Team
    Editorial Team added an answer UITableViewCells are meant to be used in UITableViews only. Feel… May 14, 2026 at 6:06 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.