Tagged Questions
The zend-framework-mvc tag has no wiki summary.
12
votes
5answers
3k views
Zend Framework: Controller Plugins vs Action Helpers
Could someone give few tips and/or examples how Controller Plugins and Action Helpers are different? Are there situations where particular task could be accomplished with one but not another? For me ...
5
votes
3answers
545 views
Zend_Auth best practises
My goal is to require login for certain pages. I am using Zend Framework mvc, and I'm trying to find examples regarding best practises.
Some notes on what I'm looking for:
I want non-logged in ...
5
votes
1answer
2k views
How to serve static pages with Zend Framework
We currently employ Zend Framework and the MVC pattern on our website. We have large numbers of static pages, which are in random areas of the site. These pages are not simple HTML pages that can ...
4
votes
3answers
4k views
How Can I Write Zend Framework URLs That Have Anchor Tags In The Body?
Using the standard MVC set up in Zend Framework, I want to be able to display pages that have anchors throughout. Right now I'm just adding a meaningless parameter with the '#anchor' that I want ...
3
votes
6answers
297 views
Any up-to-date Zend Framework full application tutorials?
I've been searching and found several websites etc. for building projects in Zend Framework.
I have found excellent beginner tutorials (such as the infamous akrabat one), and now I think I can take ...
3
votes
2answers
575 views
Zend Framework - Redirecting to IndexController in different module
All,
I have the following project setup in Zend's mvc Framework. Upon accessing the application, I want the user to redirect to "mobile" module instead of going to IndexController in "default" ...
3
votes
6answers
393 views
How to solve the case when users surf to index.php
In Zend framework, using the MVC, if A user surf explicitly to http://base/url/index.php instead of just http://base/url, The system thinks the real base url is http://base/url/index.php/ and ...
3
votes
2answers
1k views
Zend Framework MVC Design
I've asked this question on the zfforums as well, but I maybe I'll get a response here.
So the Zend Framework is a general purpose, flexible, loosly coupled, high quality framework. However, I find ...
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
3answers
185 views
MVC model where to put data specific checks
I'm writing my first application with Zendframework.
My question is about the Model–View–Controller (MVC) architectural pattern.
I currently have a model with refer to a database table.
Here's the ...
1
vote
1answer
45 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/
...
1
vote
2answers
99 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 ...
1
vote
2answers
93 views
Zend Framework, MVC, Ajax and Cli/Cron
I am working on a Zend Framework based app, and I am initializing the MVC in the bootstrapping. Now I am adding AJAX layer in the applications, so in the controller action, I am disabling the view ...
1
vote
3answers
54 views
How do I pass a URL as a parameter of an URL in Zend Framework?
My question spawns from me sending an email to the user with something like the following:
...
1
vote
2answers
54 views
Problem related to Creation of folder inside the application folder and access its classes in Zend-Framework?
I have following structure in my Zend-Project :
-application
- PDF
- configs
- controllers
- models
- views
- Bootstrap.php
-library
-public
-tests
...
1
vote
2answers
34 views
zend framework simple action problem
i am creating a hello world project in Zend MVC with Zend Server. some how the routeing is wrong. I create the project by zend_tool zf.sh create project, so it creates all directory itself, and i ...
1
vote
1answer
149 views
Zend ContextSwitch action helper for XML sets wrong Content-Type header
Zend default ContextSwitch Action Helper for XML wrongly sets the Content-Type header to "application/xml" while the documentation claims it sets it to "test/xml".
Did anybody else bump into this. Is ...
1
vote
2answers
193 views
Zend_Navigation_Page_Mvc and Fragment Identifiers
I use Zend_Navigation on my site. Most of the items are Zend_Navigation_Page_Mvc and NOT Zend_Navigation_Page_Uri. I know that I can easily add a fragment identifier to a Zend_Navigation_Page_Uri ...
1
vote
1answer
211 views
Zend Framework: How to write a correct model that use another table?
I have models in project that use more than one table to select.
How can I write code like this more correct?
public function __construct()
{
$this->_name = DB_PREFIX . 'teachers';
...
1
vote
3answers
48 views
How to check my action is being executed in Zend Framework
In zend framework, what is the best way to be sure that my controller action is being executed and how can i check different values of the variables in the actions. (Without using debugger)
1
vote
5answers
424 views
How to run same lines in all controllers init() function?
I need same 2 lines in all my controllers, each controller have its own init logic, but these two lines are common for all of them.
public function init()
{
$fm ...
1
vote
2answers
127 views
In Zend MVC, how do you pass a variable set int the controller, to a layout?
I have to pass the page title names and meta information to the layout but not to sure how to do this =/
1
vote
2answers
180 views
Does Zend_Registry live until next user request?
Does Zend_Registry live until next user request?
I put this code in the end of index.php file in zend project:(The code inside existing zend website)
Trial code:
//end of index.php file
...
1
vote
3answers
43 views
Executing a function before view renders
I'm new to Zend Framework MVC. I love a lot of things about working with an MVC environment, but find myself confused about it structurally sometimes.
I have a simple task, I'd like to flag certain ...
1
vote
1answer
139 views
Get all model details in zend
I have one doubt in zend framework. I need all model details from project which i have done in zend framework. Is there any possibility to get all model details in zend framework.
Please help me..
...
1
vote
2answers
751 views
Zend FlashMessenger problems
I am new to Zend framework and I have a problem.
I created a controller abstract class which implements the functions like:
protected function AddError($message) {
$flashMessenger = ...
1
vote
2answers
383 views
Layout being rendered twice
I seem to have a problem with my layout displaying twice. I was wondering if this was caused by something in my front controller plugin (see below) which utilises Zend Layout only for a particular ...
0
votes
2answers
25 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 ...
0
votes
2answers
30 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 ...
0
votes
1answer
28 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)
{
...
0
votes
1answer
49 views
Is there a way to tell Smarty not to print an expression?
I'd like to use Smarty in conjuction with the Zend Framework, especially some of it's View Helpers.
Now i got to the point, where i implemented a Zend_View that uses Smarty to display templates. I can ...
0
votes
1answer
68 views
Invalid controller specified (adminlogin)
Code for indexAction() in AdminLoginController is:
$form_object = new Application_Form_NewProfile();
$form_object->setAction('/adminlogin/index');
$form_object->setMethod('post');
...
0
votes
2answers
41 views
zend project on shared hosting?
I created a zend project on localhost on ubuntu OS and it is working perfectly on my local system. Now I want to upload this project online. I purchased domain name and hosting. I got following ...
0
votes
1answer
59 views
How to use a service class in a controller class?
I'm trying to integrate this amazing calendar in my project. I get trouble with the service thing. I'm using this kind of structure:
application/
modules/
agenda/
...
0
votes
1answer
47 views
ZendFramework Headscript Helper - Make scripts unique
How can I ensure that the headScript and headStyle helper include css files only once when added?
The reason I am asking is that I would like to display some contents in a lightbox and all ...
0
votes
1answer
40 views
Zend Search Lucene: Where do I put the code?
I have a CMS that I am adding Site Search functionality. The application uses the full Zend Framework MVC stack.
At this point if seems that I should be creating/using a Search model. All models I've ...
0
votes
1answer
39 views
How to alter Zend Modules from outside their folder?
i'd like to change the views of certain zend modules, without altering their code.
My idea is to change the view folder for a module using the configuration (application.ini) and nothing else.
Is ...
0
votes
0answers
48 views
First action on Zend_Controller_Plugin_ActionStack is skipped when exception occurs in requested action
In my ZF application I'm using ActionStack FrontController plugin to set up some action that need to be called. I have a custom FrontController plugin to do this:
class ...
0
votes
0answers
20 views
Do i put my thumbnail generation functions in the model or controller using zend framework
I'm pretty new to the Zend framework & finding its mvc implementation pretty confusing.
Im writing a shop front app that allows category images to be uploaded & automatically generates ...
0
votes
0answers
118 views
Zendframework XML parser where to put it
Hey guys i have a kind of best practice question about ZendFramework. I have a general xmlparsing controller and an Model for storing the xmldata into. This is not verry special at all but i wonder ...
0
votes
3answers
77 views
How to register more than 100 Plugins in Zend Framework?
My system needs to register more than 100 plugins, but after 100 Zend Framework simply cut the rest of. Is there a limitation on the number of plugins that can be registered? Has somebody an idea ...
0
votes
1answer
190 views
Zend_Test on Action_Helper accessing $bootstrap->getOptions() error
I am accessing options from an action controller, which is working well with the application, but I've hit a problem when I attempt to UnitTest it:
PHP Fatal error: Call to a member function ...
0
votes
2answers
220 views
Set timezone in Bootstrap file
In my application having one default timezone. And every users have their own timezone. I want to set the user timezone which is stored in the database.
How to set the timezone according to users in ...
0
votes
1answer
83 views
Zend MVC flush during execution
I am trying to figure out how to mimic the Bugzilla sanity check output, where Bugzilla is checking various references in database to look for logic flaws. After each check, the result is flushed to ...
0
votes
1answer
199 views
Zend Framework : Invalid contrller specified (error) ??? Help
I moved my project from windows to ubuntu and had this error while trying to run the project:
Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with
message 'Invalid controller ...
0
votes
2answers
59 views
In Zend/MVC how do I set up the controllers and views for a sub-application or submodule?
I have all my zend applications like this
/app/
/app/registration
/app/games
I need to create a URL for games like this
mydomain.com/games/game-1
How do I set up the controllers and views in ...
0
votes
2answers
207 views
MVC alternative for Zend
I'm trying to create my first project with Zend but it's really confusing me. IMO the configuration/bootstrapping is way too complicated.
So I was thinking about not using everything from Zend, but ...
0
votes
1answer
81 views
How do I set id prefixes used by Zend_View_Helper_Navigation_XXX
When I render a Zend_Nagivation instance in my view, by default the anchor tags have id's assigned with the prefix of the view helper, followed by a dash, and then the page's id.
Examples of Page 1's ...
0
votes
3answers
287 views
Create a Zend_Navigation_Page_Mvc instance from a Zend_Controller_Request
I have pages in my application that make up the navigation tree. I would like to dynamically insert pages into my navigation using the values of the request. I already have the logic to find the ...
0
votes
1answer
45 views
Best approach to control access/handle objects/models data passed to View in Zend Framework
I want to pass data to views, and I've two options in my mind (if you know a better approach, please mention).
I am using Zend_Based ORM system, and coded in a way that if I add a new field in ...