Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
8k views

How to switch layout files in Zend Framework?

I'm sure it's a simple one-liner, but I can't seem to find it. How can I use a different layout file for a particular action? Update: This worked for me, thanks! // Within controller ...
10
votes
4answers
6k views

Sending variables to the layout in Zend Framework

In my project I have a number of dynamic elements that are consistently on every page. I have put these in my layout.phtml My question is: How can I send variables into my layout from my controllers? ...
8
votes
2answers
860 views

Step-by-step coversion to module-based folder structure for zend project, bounty coming

I have a 250 point bounty on this but the system doesn't allow me to start it right away. I'm looking for a step-by-step explanation on how to go from the normal folder structure on the left where ...
8
votes
6answers
6k views

How do I use ViewScripts on Zend_Form File Elements?

I am using this ViewScript for my standard form elements: <div class="field" id="field_<?php echo $this->element->getId(); ?>"> <?php if (0 < ...
7
votes
1answer
3k views

Get request info in view helper

Is it possible in Zend View helper (extends Zend_View_Helper_Abstract) get info about module/controller/action in which that helper was called ?
6
votes
3answers
3k views

What do $this->escape() in zend framework actually do?

I need help in understanding the actual actions of a helper function in Zend Framework. I need someone to explain to me what $this->escape($string) actually does to the string passed to it before ...
6
votes
4answers
5k views

Zend different view scripts?

I have a controller that passes input from a form into a model class to perform validation. If the validation is successful I want to allow the flow to continue and render the default view associated ...
6
votes
4answers
7k views

Getting basepath from view in zend framework

Case: you're developing a site with Zend Framework and need relative links to the folder the webapp is deployed in. I.e. mysite.com/folder online and localhost:8080 under development. The following ...
5
votes
3answers
105 views

masking credit card & bank account information

I'm looking for a php function which can mask credit card & bank information such as routing number and account numbers. I need to mask many formats, so the existing stack overflow answers don't ...
5
votes
1answer
563 views

Creating a form view in Zend

Is there a reliable way to create a custom view for a Zend_Form? The decorators are pretty cryptic and using them in fancy ways sometimes is so complicated that I'd prefer to just write the HTML by ...
4
votes
1answer
987 views

How to use Zend Framework's Partial Loop with Objects

I am quite confused how to use partialLoop Currently I use foreach ($childrenTodos as $childTodo) { echo $this->partial('todos/_row.phtml', array('todo' => $childTodo)); } $childrenTodos ...
4
votes
1answer
766 views

zend view: bootstrap(view) or bootstrap(layout)

These are 2 different implementations for an _init function in the bootstrap related to bootstrapping the view. One gets at the view right away: bootstrap('view') then gets it as a resource ...
4
votes
4answers
260 views

Where do I put view scripts needed by view helpers (using Zend_View and the default directory layout)?

I've got a relatively complicated portion of my application, which is an editor for access control lists. I need to reuse it in a few places, and I'd like it to be loadable all ajax-y and such. ...
4
votes
2answers
4k views

How do I extend the Zend Navigation Menu View Helper?

I need to change the output of Zend_View_Helper_Navigation_Menu. I've found the two functions that I'll need to modify, and I know how to make the changes I need. What I don't know is how to make ...
4
votes
4answers
2k views

Zend Framework call view helper from a Zend_View_Helper

I have a helper called Zend_View_Helper_FormVars that's used by one of my modules. I also have a common helper in application/common/helpers/GeneralFunctions.php I'm trying to call a function from ...
3
votes
3answers
165 views

PHP Variable Scope and “foreach”

My application is building PDF documents. It uses scripts to produce each page's HTML. The PDF-Generating class is "Production", and page class is "Page". class Production { private $_pages; // an ...
3
votes
3answers
330 views

Zend_View_Helper vs Zend View Partial Script

This is my fork in the road. I want to display some sort of button on my webpage and I want to do it in many places. This 'button' is really just gonna act like a link to some other page and all the ...
3
votes
1answer
186 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 ...
3
votes
3answers
215 views

Does zend have an image view helper

I could type the html for an image in my view <img src=""> but was wondering if zend has an image view helper like it has with urls.
3
votes
2answers
2k views

zend_form ViewScript decorator / passing arguments

I have a form that is extend from Zend_Form. I am placing the form into a ViewScript decorator like this: $this->setDecorators(array(array('ViewScript', array('viewScript' => ...
3
votes
3answers
15k views

Zend Framework: Render multiple Views in one Layout

I want to generate a dynamic site using Zend_Layout. My layout (/application/layouts/scripts/layout.phtml) contains the following lines: ... <body> <?php echo ...
3
votes
1answer
5k views

Where do I save partial (views) in Zend Framework, to be accessible for all Views in my App?

I have several view Partials (like paginator partial) which I want them to be available To all view scripts in my application. Is there a directory I can put partial vies in, and they will be ...
2
votes
1answer
60 views

How to render a parent and child active in a menu if they have the same URI and using Zend_Navigation?

Hello I'm digging into this problem without finding a solution. It seems very simple but I turn around for a while. I'm trying to highlight a parent and 1 child in a menu. Both have the same uri, but ...
2
votes
1answer
132 views

Zend_View caching (Redis)

Task: During the process of action of Zend Application to achieve next: - for each unique url or any definite url to substitute Zend_View object by data stored in the cache (Zend_View object ) and not ...
2
votes
1answer
69 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 ...
2
votes
1answer
131 views

Zend view in another view

I have a problem with Zend view . I wont to call a view in another view . How can I do it . Thanks.
2
votes
1answer
506 views

Idea discussion: dynamic view script switching in zend MVC implementation [closed]

This is basically the "Am i doing it right?" question. I have an idea how i can transparently switch views for default/mobile version/admin areas at run time. And I would like to know what pros and ...
2
votes
1answer
162 views

how to refer one .phtml in the other views in Zend

am new in Zend framework. I have one .phtml file, includes menus section. i need to add that .phtml file in to the views i.e views/scripts/index.phtml page. how can refer that please advice thanks ...
2
votes
2answers
226 views

How to stop Zend Framework from appending '/scripts/' to the View Base Path

Thats basically my code (simplified): class IndexController extends Zend_Controller_Action { public function indexAction(){ $this->view->setBasePath(APPLICATION_PATH . ...
2
votes
1answer
125 views

Why is this code full of slashes

I'm reading some RAW code from here http://www.zfsnippets.com/snippets/view/id/17/output/raw/table-view-helper where the author is doing a lot of slash escaping like this \'class\'. protected ...
2
votes
2answers
379 views

Zend controller/view newbie puzzle: $_GET & $_POST empty - on receipt from HTML form within view

Zend newbie here ... And just to make it better, my mission is to build on top of someone else's pre-existing Zend site. (BTW: zf show version --> Zend Framework Version: 1.11.1 -- I seem to have ...
2
votes
1answer
411 views

how to zend zf create partial

I'm creating a partial manually by creating a partials folder in layouts/scripts/partials and then creating the mypartial.phtml. Is there a command to do this quicker, like maybe? zf create partial ...
2
votes
2answers
1k views

Zend Framework - Set No Layout for Controller

I have a Controller that I want to use for ajax scripts to call and set session variables, get information, etc. How do I set it so that that particular controller doesn't use the default layout ...
2
votes
4answers
164 views

Zend_Form:: When should be form created in view and not in controller?

Zend_Form:: When should be form created in view and not in controller? option 1 - form created in controller and passed to view (usually used) controller: $form=new MyForm(); ...
2
votes
4answers
314 views

What's the best way to escape vars in Zend_View automatically?

A week or two ago I just started using Zend Framework seriously and have had trouble escaping manually with Zend_View::escape(). Does anyone knows how to escape vars in templates (Zend_View templates) ...
2
votes
1answer
704 views

Set custom template path to render instead of standard one

Is it possible in ZendFramework to set custom template when I call some action ? For example I call /category/show/id/123 and View is rendering /category/show.html file. I want to be able to render ...
2
votes
3answers
215 views

trying to show a variable in my layout

hi i have a simple question where is my code wrong ? in index controller and index action i put $this->view->username="user1"; and when i try in my layout i use echo $this->username; ...
2
votes
1answer
875 views

Extending Zend View Helper Placeholder

I was reading the manual about basic placeholder usage, and it has this example: class Bootstrap extends Zend_Application_Bootstrap_Bootstrap { // ... protected function _initSidebar() { ...
2
votes
1answer
822 views

Modify Stack in the Zend HeadScript View Helper

I am trying to attack this problem from a completely different angle, because it doesn't look like I can achieve my goal that way. I want to loop over the item stack in the HeadScript View Helper, ...
2
votes
2answers
242 views

Searching for a javascript function definition within a string using PHP?

I'm using Zend_View_Helper_HeadScript to display javascript function definitions in the head of my webpages, and I extended it to get the javascript code from file if desired. What I'd like to know ...
2
votes
1answer
176 views

Launching a custom view from a custom model. Zend_possible?

You have to promise not to giggle, but my situation is following: Instead of using partials and helpers and other similar tools that we use already, we want to use a custom view outside all frames ...
1
vote
1answer
34 views

Template engine for PHP + JS but

I'm building a web app that relies fairly heavily on Ajax for its interactivity, and I want to get around the problem of having two versions of my HTML templates, to keep things DRY. I came across a ...
1
vote
1answer
44 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?
1
vote
3answers
46 views

Zend ViewHelper Sub Functions

I want to add more than one function to a ViewHelper. Usually there is one function named like the class and like the file name. How can I add several functions into one ViewHelper? E.g. like this: ...
1
vote
2answers
39 views

zend currency negative sign

Hello i am using Zend_currency class Currency extends Zend_View_Helper_Abstract { public function currency($number, $locale = 'it_IT') { $currency = new Zend_Currency($locale); ...
1
vote
1answer
71 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() { ...
1
vote
4answers
75 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 = ...
1
vote
2answers
312 views

problem with module bootstrapping

my application.ini [production] phpSettings.display_startup_errors = 0 phpSettings.display_errors = 0 includePaths.library = APPLICATION_PATH "/../library" bootstrap.path = APPLICATION_PATH ...
1
vote
1answer
344 views

How does zend view render resolve path to view script

How does an action like this "customSearchAction()" map to the view script file name. Neither of these file names work "customsearch.xml.phtml", "customSearch.xml.phtml", "custom-search.xml.phtml". ...
1
vote
2answers
119 views

Automatic variable escaper for Zend Framework

Can you recommend any good solution for automatic view variable escaping for Zend Framework 1.x? I have tried so far: ZF2 implementation; looks like it does not escape variables syntax like this: ...

1 2 3