Skip to main content

Questions tagged [zend-framework-mvc]

Zend Framework is an open source, object oriented web application framework for PHP 5. Zend Framework is often called a 'component library', because it has many loosely coupled components that you can use more or less independently. But Zend Framework also provides an advanced Model-View-Controller (MVC) implementation that can be used to establish a basic structure for your Zend Framework applications.

zend-framework-mvc
0 votes
1 answer
78 views

Zend Framework 1.2 - Error Table doesn't exists - even though the table already exists in MySQL

We’re on Zend 1.12 https://github.com/Shardj/zf1-future with security and php7.4 compatibility updates. Since this is a legacy application with very little documentation from the prior developer. I am ...
TSCAmerica.com's user avatar
0 votes
1 answer
440 views

Laminas: Different Layout Files for each Module

i would like to use a different layout file for each module which is set under view_manager- template_mapin the module.config.php But for some reason both modules are always using the same Layout File....
jan7007's user avatar
  • 61
0 votes
3 answers
1k views

How to pass variables from controller to layout (not view) in Zend 3

I'm using zend MVC 3.1.1 and trying to pass variables from the called controller action to the layout but having real difficulties finding a way to do so. I haven't found a solution online for this ...
user avatar
3 votes
2 answers
742 views

Loading Modules Dynamically in Zend Framework 2

I have asked this question yesterday as well, but this one includes code. Issue My application have multiple modules and 2 types of user accounts, Some modules are loaded always which are present in ...
Haris Mehmood's user avatar
0 votes
0 answers
134 views

tablegateway in Zend3 vs Model in Zend1

In the last years I developed a few projects in ZF1.x. Now I started a new one and used ZF3 the first time. I found some very good improvements, but I'm a bit lost with the database models. What is ...
pia-sophie's user avatar
0 votes
1 answer
191 views

Passing variables between Middlewares using zend-mvc

I'm trying to decipher how to properly blend variables between ZF3 Middleware under the latest release of zend-mvc. Imagine a route like this: 'sandwich-test' => [ 'type' => \Zend\Router\...
Saeven's user avatar
  • 2,290
1 vote
1 answer
883 views

Ignoring the default 404 route in ZF3 MVC

Currently, for my GET endpoints in RESTFUL Zend Framework 3, if I can't find the item the user requests through the paramaters I send 400 with JSON API errors like so: $this->response->...
Justin Dearing's user avatar
1 vote
2 answers
463 views

What's the best way to make a ZF3 application with no default router?

I made a Zend Framework 3 MVC application. I don't want a default router. My one controller RESTFUL and only returning JSON. I want to remove the default IndexController. I want / to just give a 404 ...
Justin Dearing's user avatar
0 votes
1 answer
561 views

Can I have a ZF3 MVC Framework Controller with parameters in the constructor?

I have a Zend Framework 3 MVC app with a controller with two end points. Both need to access the same class. It seems like the best way to do this would be to would be to make an instance of this ...
Justin Dearing's user avatar
1 vote
1 answer
296 views

How do I configure the default ZendLog factory for a Zend Framework MVC app?

I have a ZendFramework application. Its running Zend Framework 3. I added zend-log, and injected it into the constructor of the IndexController I log a message in the index action of the index ...
Justin Dearing's user avatar
3 votes
1 answer
845 views

Making a Zend Framework 3 MVC app return a simple string

I have a ZF MVC app I created with composer create-project -sdev zendframework/skeleton-application my-application I made a controller like the following. class SomeController extends ...
Justin Dearing's user avatar
0 votes
1 answer
132 views

Zend Project architecture

I'm currently using Zend 3 for a project (or a range of projects). In order to avoid multiple vendor folders per project, I'd like to have ONE vendor folder at root level that every project runs from. ...
S.Carter's user avatar
8 votes
2 answers
6k views

ServiceManager in ZF3

I know that this has been covered extensively in other threads, but I'm struggling to work out how to replicate the effect of $this->getServiceLocator() from ZF2 controllers in ZF3 ones. I have tried ...
Max Griffin's user avatar
1 vote
1 answer
983 views

Serializing objects to ZF3 MVC Response JSON

I have a Zend Framework 3 app. I added the ViewJsonStrategy to module.config.php. This lets the following endpoint return JSON: public function helloAction() { return new JsonModel([ 'msg'...
Justin Dearing's user avatar
3 votes
1 answer
161 views

zf2 routing seems to ignore __NAMESPACE__

In Zend Framework 2, I tried using the following route: 'default' => array( 'type' => 'Segment', 'options' => array( 'route' => '/:...
Leo Galleguillos's user avatar

15 30 50 per page
1
2 3 4 5
10