The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
40 views

Automatic convention-based routing within a module in Zend Framework 2--possible?

I'm trying to understand all the configuration necessary to get my routing working in Zend Framework 2, and I can't help but wonder if I am making this more complicated than necessary. I am working ...
0
votes
1answer
29 views

Zend Framework 2 inherid variables from parent view

I have the following code which returns a view with a subview. As it can see, the subview repeats the variable $form and the array &fields duplicating the pass of variables into view. How I can ...
0
votes
0answers
24 views

need to Pass values from View to model in WordPress

OK here is what happening. There is a WordPress plugin that I have to edit. Its been created using Zend MVC patterns and I have zero knowledge of it. Now I have created dynamic pages using. I added my ...
1
vote
1answer
195 views

Setting Page Title - headTitle() - Zend Framework 2 ZF2

I am currently in the process of building an application with ZF2, everything is going well so far, but I am just having trouble with the page titles (as in the tag in the ). In my layout.phtml I ...
0
votes
1answer
115 views

Zend Framework 2 Routing Part of the action name based on route segment

Is there a way to set up a route in ZF2 (Segment or otherwise) so that /staff/list translates to the staffListAction() action in my controller? Typically /staff-list translates to staffListAction. Is ...
2
votes
2answers
93 views

ZF2: What is the difference between bootstrap() and run() at the Application level?

This question is Zend Framework 2 related. After quite a bit of (re-)reading and Googling, I've come up short: In respect to a ZF2 application, what is the actual difference between bootstrap() and ...
1
vote
1answer
41 views

Zend Action View Helper versus ActionStack Action Helper

I understand that the ZF ActionStack Action Helper incurs a performance hit because it retriggers the entire dispatch process. But what about the Action View Helper? Should I be avoiding it for the ...
0
votes
2answers
53 views

Make Zend 2 to only search for templates in same Module

I have (simplified) two modules, Application and Admin. I have worked on the Admin module for a while now and started with Application. Both the modules feature a controller named UsersController. ...
0
votes
1answer
276 views

Zend Framework 2 View Manager - view file and requested action match

I want to make automatic match view file - controller action. If /Web/TestController/testAction (module/controller/action) requested, ZF2 tries to load this view : /web/test/test Then, I have to ...
0
votes
1answer
576 views

ZF2 Models shared between Modules

I've just started setting up a new ZF2 application for a new project, based off the ZF2 skeleton, and am looking at their tutorial on Models. tl;dr: how should I share a Model between multiple ...
0
votes
0answers
39 views

append the data into the same cache file in zendframework 1.x

I am using zend cache for saving data for sometimes until my cron runs,collect the data and insert into database. So I want to ask 2 questions... 1) How can i append the new data into same file ...
1
vote
3answers
182 views

How to add 3rd party application into Zend Framework 2 MVC (Apache)?

Okay, so I'm using the Zend 2 Framework and I followed the basic Zend MVC style. But lets say I want to add site.com/blog (and blog being a 3rd party application). So how do I got about adding this? ...
1
vote
2answers
181 views

Is the loadModules.post in zf2 a function?

When I trace the code in zf2 , I can't find where the Application service registers. Here is the code in application.php public static function init($configuration = array()) { $smConfig = ...
0
votes
1answer
748 views

ZF2: How to attach listener on the event in the Module class?

I want to set a basePath to be the same for every component of my Mvc for a given request. I mean when I call these methods I want to get the same result, lets say '/spam/ham/': echo ...
1
vote
1answer
761 views

ZF2: How can I set basePath to be the same for a whole application?

The manual's example shows how to set the basePath only for some specific viewModel: $this->getHelper('basePath')->setBasePath() But I want to set it somewhere in one place and then it is ...
0
votes
2answers
87 views

Zend MVC: one call from controller to model or more calls for differents results?

i need differents results from a model but i don't understand if it is correct make a single call and leave to model all the work or make more calls and collect the result to pass to the view when ...
0
votes
1answer
231 views

ZF2 - The Forward Plugin returns the ViewModel Object. How to make it to return other values, e.g. simple or associative array?

I call the Forward plugin from one Controller's action method to get the value from the other Controller's action method: namespace Foo/Controller; class FooController { public function ...
1
vote
1answer
1k views

ZF2 - How to change the error/404 response page? Not just template but to set a new ViewModel

By default the page is set like this in the Application module.config array: 'template_map' => array( 'error/404' => __DIR__ . '/../view/error/404.phtml' I want to change the page. I want ...
0
votes
1answer
107 views

Zend 2.0 query route

Hello I am using ZendFramework 2.0 and I would like to set routing with query params. For example I would like something like that to get working. I want route that will match ...
2
votes
1answer
1k views

ZF2: How to pass parameters to forward plugin which I can then get in the method I forward them to?

I have an Action method in Foo Controller which requires parameters: public function fooAction($one, $two) { $a = one; $b = $two; } And I need to forward to that method from the other ...
0
votes
1answer
162 views

ZF2: How to finish the request from the other Action method then the request came to using Forward Controller Plugin?

In ZF there is a Forward Plugin in controllers. The manual says about it: Occasionally, you may want to dispatch additional controllers from within the matched controller – for instance, you ...
1
vote
2answers
87 views

Nesting controllers in Zend Framework

I'm building a Zend Framework application and created some controllers which correspond to database tables and hold methods for performing CRUD operations on those tables. I've just started working ...
1
vote
3answers
784 views

ZF2: Controller's Forward plugin doesn't work. How to make it work?

I need to forward the ajax request to the other Action method of current controller. I use the Forward plugin but it doesn't work. There is an example in the manual about how to use the Forward ...
0
votes
2answers
98 views

Learn Zend Framework 1 [duplicate]

Possible Duplicate: Fastest way to learn Zend Framework? I'm looking to apply to work for a company over my winter break. They apparently rely heavily on latest of zend framework 1. For ...
5
votes
2answers
4k views

How to render ZF2 view within JSON response?

So far, I have figured out how to return a typical JSON response in Zend Framework 2. First, I added the ViewJsonStrategy to the strategies section of the view_manager configuration. Then, instead ...
1
vote
1answer
808 views

Zend Framework 2 Theme Manager

have on question about the Zend Framework 2. In my Application i have a module whiche handles my whole Application. For further improvements i want to develop a Theme Manager. The Theme Manager ...
0
votes
1answer
56 views

Dynamic Controller with Zend Router through Resources

I'm trying to create a clone ( http://site.com/indexclone ) for http://site.com/index, but I also want all actions to be functional as they are in IndexController and potential parameters that are ...
0
votes
2answers
69 views

Redirect to a different view in the controller

This is my Zend Framework directory structure (only included what you'll need): -Controllers -HomeController.php -IndexController.php -Views -scripts -home ...
0
votes
2answers
211 views

Setting cookies on Zend Controller

We are trying to create a unique ID for each user that visits our site. I'm relatively new to Zend and to MVC patterns, so i'm unsure as to where the cookies should be set and how. The php is very ...
0
votes
1answer
490 views

Rendering a partial view in Zend for adding html to routing action layout

I am rendering a page with a lot of frames (XHR contentpanes via dojo). This is done through a request to IndexController which sets up regions 'header,left,right,center,footer' with the exception, ...
0
votes
0answers
82 views

How can I use a model from another model in Zend?

I have this structure: application controllers ... models acl api.php ... user.php ... ... In ...
2
votes
1answer
2k views

ZF2: How to propagate Controller retun to layout template?

I'm returning data from Controller like this: /** * Password request sent * * @return array */ public function passwordRequestSentAction () { return array( 'foo' => ...
1
vote
1answer
299 views

Layout pre-render modification in Zend Framework 2

I'm having a hard time figuring out how it would be possible to call functions on a layout in ZF2 before it gets delivered. More specifically I have certain elements that need to be changed in both in ...
0
votes
1answer
264 views

Allowed memory size exausted in simple ZF2 application

I've just created a very simple, one-module application using Zend Framework 2. I've set up the autoloading, the routes, etc., but when trying to connect to this test application, I wait some MINUTES ...
0
votes
0answers
109 views

Zend : Other action in IndexController doesn't get called despite addRoute, correct .htaccess

I know there have been many questions on this and I have read all the discussions, but nothing seems to work so far. I already have the correct setup at the onset, .htaccess. I have tried addRoute in ...
0
votes
0answers
278 views

Zend Framework, Form Fileupload Element, No Decorater found,:- Warning

i m trying to add, file upload element to zend form, when i run the form , i get warning like this. no decorater fount............ my code is here, i have add to Fileupload element in this form, and ...
0
votes
1answer
769 views

Zend Framework 2 - Zend\Mvc\Router\Http\Part - Module Configuration

I am creating a multi lingual application using ZF2.. and cannot determine how to add a part URL which will form the base of each URL regardless of modules. ...
0
votes
2answers
1k views

set some view variable in controller constructer

I have the following code in my zf2 controller: <?php namespace Accounting\Controller; use Zend\Mvc\Controller\ActionController, Zend\View\Model\ViewModel, Accounting\Model, Zend\Paginator, ...
3
votes
3answers
3k views

How to render a page in zend framework 2?

I used below code to render a page in the controller action. public function userinforeceiveAction() { $renderer = new PhpRenderer(); $map = new Resolver\TemplateMapResolver(array( ...
2
votes
1answer
469 views

How do I add multiple module directories in Zend Framework?

I'm working on a Zend project where there is a need to make it easily extendable. Having considered various options, I think it would work best if these extensions used the same MVC structure as ...
4
votes
4answers
9k views

ZF2: Get url parameters in controller

I have experienced Zend Framework 1 and I've build some apps with that framework. Now, I'm experimenting Zend Framework 2, but I'm stuck on the url parameters. I've setup my routing like this: // ...
0
votes
1answer
136 views

move from one action (signup) to confirm action (show the data submited) and success page Zend Framework

I am a newbie to Zend and creating a simple signup form but which has many fields. So I want to create a confirm page after the user signup action. this is how my flow goes: signup -> confirm ...
0
votes
3answers
294 views

Correct way of MVC folder structure in Zend Framework

i have problem in folder Naming in MVC thats why getting the following errors. Fatal error: Uncaught exception 'Zend_View_Exception' with message 'script'browsing- history/browsinghistory.phtml' ...
0
votes
2answers
203 views

zend Framework. Calling a different javascript file specified by action/controller

I want to split a unique javascript file to get a file by action. On my controllers I use jQuery()->addJavascriptFile() to call js files : class DemandesController extends Zend_Controller_Action { ...
0
votes
1answer
261 views

Zend Framework - Best Route Method For Large Application

I'm at the start of a build of a relatively large site using Zend Framework. I'm thinking of using modules, and folder's in each module controller folder to organise the application controllers. My ...
0
votes
2answers
140 views

I have array of plain PHP object that I want to use in conjunction with Zend_Paginator and partialLoop

I am implementing DAO pattern in my sample app and I have plain array that contains User(domain) fetched from UserMapper I want to use Zend_Paginator with array adapter, but it does not work it only ...
2
votes
1answer
268 views

How to access models in default module in Zend_Framework?

I'm trying to make my application modular using modules in Zend Framework. Here is my new project structure: configs/ application.ini layouts/ filters/ helpers/ ...
0
votes
1answer
49 views

configuration in Zend Framework

i am new to ZF and i am making a project in ZF .i got basic knowledge of ZF but need more. i studied configuration in ZF in many different ways like Using Array Configuration Creating File ...
3
votes
5answers
6k views

ZF2 - Get controller name into layout/views

I know with ZF1 you would retrieve the module/controller name using custom View Helpers that would get the singleton frontController object and get the name there. Using ZF2 as they've abolished alot ...
0
votes
1answer
146 views

Android HttpGet is requesting indexAction

my HttpGet request is calling my indexAction, instead of getAction. What's going on? Here are my codes: public function getAction() { $id = $this->_getParam('id'); if(!$id) { ...

1 2