Zend_Layout: Part of the Zend Framework that combines the ideas behind Composite view and Two Step View

learn more… | top users | synonyms

0
votes
2answers
208 views

Zend Framework - multiple modules, one layout

I have a Zend application with the following structure: application configs application.ini modules api controllers Bootstrap.php default ...
0
votes
0answers
48 views

Zend Framework: Access request in a layout view script? [closed]

In a layout view script or helper I want to choose whether to display form A, form B, or both. The decision depends on parameters of the request object (specifically, the controller and action). The ...
0
votes
1answer
53 views

Zend_Layout configuration: when and how?

I am building a Zend Framework MVC application and am having difficultly configuring my Zend_Layout. Firstly, my application resources are all in resource plugins which are loaded in bootstrap with ...
2
votes
1answer
277 views

Adobe Reader cannot open .pdf file created using mPDF in Zend Framework

I'm trying to generate a .pdf file using mPDF in a Zend Framework application, from the output of the action. Here is the code of my action: public function testAction() { ...
0
votes
2answers
74 views

Zend default view script name switch

I want to display a mobile view instead of the normal view script. Let's take for example this action /my_module/my_controller/my_action. When I call it, based on some headers processing I know that ...
0
votes
1answer
231 views

Zend: Adding multiple js files to layout

Im trying to add multiple js files to layout. I want do this in helper. Here's code of my helper: // class Zend_View_Helper_LoadJs extends Zend_View_Helper_Abstract public function loadJs() { ...
1
vote
1answer
669 views

how to append script file in zend framework

My layouts are placed inside layout/scripts/layout.phtml i have placed the below code inside my head section of layout.phtml <?php print ...
1
vote
1answer
151 views

setting layout file for module inside bootstrap in zend

My zend application structure: application ->configs ->layouts ->scripts ->admin.phtml ->site.phtml ->modules ->admin(controllers, models, views) ...
0
votes
1answer
133 views

Load Zend Layout from a Database

I am building a cms on top of Zend, just to practice and for fun. I would like to be able to store the layout scripts and view scripts in the database, and retrieve them from there, so they are easily ...
0
votes
2answers
508 views

stylesheet view helper in zend framework

I wanted to append css stylesheet inside head tag but gets appended to body tag. Here's what i did: i have a controller 'countries' with action 'index' and my view is index.phtml index.phtml ...
4
votes
3answers
126 views

How can I populate Zend_Layout variables with backend data?

When trying to adhere to established best practices like avoiding singletons, registry, static properties and base controllers, how I can populate my layout(and partials used by the layout) with data ...
2
votes
2answers
448 views

How capture the default.phtml in a variable inside a controller

I have a simple question... How could I render the contents of the default.phtml which is in Project/application/layouts/scripts/default.phtml to a variable, so I can have its html. In the index ...
0
votes
1answer
95 views

Zend Layout Double Div

Hi i want to put two div in a zend view. After i want to have the two div in different position. My problem is that i want to have the normal content adn i want to add another div that rapresent the ...
1
vote
2answers
196 views

How do I pass variables to a layout in a multiple module / layout Zend Framework application?

Before I converted my Zend Framework application to a module based structure, it had a single layout and I could pass variables to it from my controller like so: // Controller action ...
3
votes
1answer
470 views

Zend Framework - clear a custom placeholder from a viewscript

I'm trying to clear a custom placeholder from a viewscript, let's say I have a controller plugin that creates a sidebar: $bootstrap = ...
1
vote
3answers
334 views

Using Variables in layouts using Zend Framework

I am trying to learn how to use the Zend Framework and ive ran into trouble. Im trying to place the current users name in the header of the application (displayed on every page), specifically ...
0
votes
2answers
257 views

Passing variables to layout after bootstrapping layout resource

I had to create method in Boostrap which bootstraps Layout resource and registers some view helpers. protected function _initViewHelpers() { $this->bootstrap('layout'); $layout = ...
0
votes
1answer
235 views

zend paginator not including CSS

i have used zend paginator in my app its working fine the way its .but when i click on any link i mean any pagination it query right info but the css is not applied there.initially when page renders ...
1
vote
1answer
222 views

Zend Layout for specific Actions

Is there a simple way of just enable a layout for the actions of a controller, instead of disabling it in all other actions of other controllers in Zend?
0
votes
1answer
71 views

Why no Zend_Layout helper or codebehind? And best way to

I was just wondering why no code-behind or helpers were made to work with layouts? I have stuff I want to display in my layouts without having to set it up in a placeholder for every single ...
0
votes
2answers
281 views

Zend Framework: add data to layout for every action of controller

i am writing a web application and i need all the data returned/computed in all actions of one specific controller to return data to the layout (not the view). So after each action, a controller ...
0
votes
2answers
284 views

Line breaks and white lines of Zend layout.html output

As per the Zend Framework standard, I'm using Zend_Layout. zf create project demo cd demo zf enable layout That's it Here's my config: [production] phpSettings.display_startup_errors = 0 ...
1
vote
1answer
472 views

Cannot echo headTitle in layout view

I got my headTitle up running, except i cannot echo it in my layout file as i need it for page header. This is how i done it: Bootstrap.php: protected function _initDefaultHelpers() { ...
0
votes
2answers
306 views

Zend Framework: Is there a View Helper to display View Name in Layout Class?

As the title suggests, I'm trying to find a way of displaying the title of the View currently being displayed as part of the layout. I'm trying to do this so that the page title is dynamicly populated ...
0
votes
1answer
396 views

Zend Framework 1.11 Layout classes etc

just started using Zend Framework and I'm wondering what to do with odd classes I have. I'm pretty much wondering about best practise for getting everything setup. I've just enabled layout and I have ...
-1
votes
2answers
98 views

Performance effect using $this -> render(); while developing a layout?

A lot of time, it becomes necessary to separate some section commonly used like banner, footer to a separate file and later on include this parts as $this -> render('banner.phtml'). When this is ...
1
vote
4answers
304 views

Which is better approach to get Zend_View

I am working on a Zend Framework based app, and in controller plugins, I can get Zend_View object with the following methods, someone please tell me which approach is better and why? $view = ...
2
votes
1answer
281 views

Best way to show user info in zend layout

I'm trying to show information about user in my Zend Framework application. I'm using one layout script for all controllers (except login controller). And now I want to show information about logged ...
0
votes
2answers
130 views

Zend_Layout + helperClass

I am try to use helperClass in Zend_Layout options. I create a class: class Helper_Testi extends Zend_Controller_Action_Helper_Abstract{ public function init(){ echo "111111111"; ...
2
votes
1answer
107 views

Where should I locate logic related to layout in Zend Framework?

I need to customize the attributes of my body tag. Where should I locate the logic? In a Base Controller, view Helper ? This should be the layout <?=$this->doctype() ?> <html ...
5
votes
4answers
672 views

How to use a Zend Layout as Wordpress Theme?

I have written a Zend application and have included Wordpress for blogging. When I first installed Wordpress I themed it so that it used the same header etc as the main application. I have since ...
0
votes
1answer
890 views

css problem in action on Zend Framework

Not sure what I'm doing wrong here, but it seems that the framework is only able to find the style.css on my index actions on every controller. I'm calling it from the layout.phtml like this: ...
2
votes
1answer
437 views

Set indent on view in Zend Framework

In Zend Framework, it is possible to set indentation for headMeta(), headLink(), etc: <?= $this->headLink()->setIndent("\t\t") ?> I like this. I like things tidy. So, now I would want ...
3
votes
2answers
478 views

Zend MVC:: How can javascript file + javascript code inserted to partial for head or body area?

How can javascript file + javascript code inserted to partial for head or body area? [Inside view simply call for insert to head to HeadScript and to body InlineScript - this not works inside ...
0
votes
2answers
195 views

Zend Portlet Kind of a Layout

I am using Zend Framework. Want to make a portlet kind of view, which is like each div is generated by a different controller/view pair. Like the layout - <div id="news"> <?php echo ...
3
votes
1answer
265 views

Zend_Layout and/or Smarty

I am new to Zend Framework, but planning to create quite a complex project using it. I was looking at the view options for Zend Framework. There is one with Zend_View and Zend_Layout and also ...
0
votes
2answers
244 views

Zend Layout Problem [closed]

Trying to learn Zend Framework. I am sure I am doing something real stupid, but <?= $this->layout()->content?> shows content for index but not for others... I mean ...
5
votes
4answers
5k views

How to change meta tags in zend framework layout

So I have some default meta tags on layout.phtml set using $this->headTitle() and $this->headMeta()->appendName() and is echoed at layout.phtml's header My question is: How do I change ...
1
vote
1answer
345 views

unable to access zend views from controller file

I am able to print the form content in the controller file, but when I assign the form view as $this->view->form = $form and trying to display the form design using echo $this->form in ...
0
votes
0answers
487 views

Unable to access / include local css,js files but able to access the same on remote server

I often face problem of including local css and js files in layout.phtml. Any js or css file which is there 'zendframework/public/' folder is never accessible, but any such file on a remote server is ...
1
vote
1answer
784 views

Zend Framework - use a common header for different actions in a controller?

I've tried reading the question found HERE: Module configuration and layout configuration in zend framework. It was described as being everything I need to know about layouts - but - I'm afraid I'm ...
2
votes
2answers
4k views

How to setup multiple Layouts in Zend Framework. Eg. Public/Logged in/Various combinations of modules

I know & used the very basic Zend Framework's Layouts where I used 1 layout throughout the whole site. But now I need a more intermediate/organized setup. The public site layout will have the ...
0
votes
1answer
1k views

How get Zend_Controller_Plugin_Abstract redirect worked with full url change?it's making Zend_layout disable layout fail

I have an admin webapp.one have to login before perfoming any action.Now the /default/index/index has the login form which is an ExtJs component.basically the login process is an ajax one.i've created ...
2
votes
3answers
529 views

where is the appropriate place to put code to switch the Zend Layout being used?

I have created a Zend Framework website and I'm now updating it to switch out the layout file depending on whether or not the user is on a mobile device. I have written a class to deal with the ...
0
votes
0answers
136 views

How and where to configure and populate common values and elements in Zend Framework layouts?

I need to initialize many variables and render many elements into the layout: i.e. quick login form, shopping basket contents, logged-in user details, sidebar contents, etc. I am looking for the most ...
3
votes
4answers
4k views

Can i have multiple layouts in Zend Framework?

I have a flashy page with image rotators in the front end for the clients. For back-end I want to have different layout. Can i have multiple layout? A little hint would be appreciable
0
votes
2answers
7k views

Zend - how to disable layout on a given action?

I have the following controller that, among other methods it has this one: class EquipasController extends OccControllerAction { public function listaAction() { ...
3
votes
1answer
461 views

Zend_Dojo_Form in a layout

I have a Zend_Dojo_Form which I have moved from my view (where it works fine) to my layout, as it's something that will be useful on every page. However in the layout the form no longer works - none ...
1
vote
2answers
164 views

Where to put code required by the layout in Zend Framework?

I am using Zend_Layout for the layout of my Zend Framework application. It is very simple, but I still have a few operations that I need to do in the layout. For now, the code is included between PHP ...
1
vote
3answers
948 views

Zend_Test_PHPUnit_ControllerTestCase and Zend_Layout, unable to find Layout plugin while running tests

I am starting to write some test cases for controller classes using Zend Framework 1.10.6 and Zend_Test_PHPUnit_ControllerTestCase. I am having problems with one item, which is that while the test ...

1 2