Tagged Questions
-2
votes
0answers
28 views
Should I stick with my working PHP webapp that uses a utility class, or should I rewrite it to be MVC compliant? [closed]
I've got a password management system that I'm making from scratch in PHP. The look of it is fairly simple right now; each page is just a mix of PHP and HTML for the UI. The PHP connects to a utility ...
0
votes
0answers
44 views
Is this correct implementation of MVC pattern for PHP website? [migrated]
I'm currently developing a music website using OOP PHP and I'm trying to correctly implement the Model View Controller pattern.
I am creating this website from scratch so I would like to avoid ...
1
vote
0answers
42 views
Passing data associated with a user object between views- PHP MVC
I am using a lightweight PHP MVC (homegrown--not by me--but based off of Codeigniter) to develop a web application. Currently, I only have one object--the User.
The web application allows each user ...
0
votes
0answers
5 views
Posting File with PHP/CURL to ASP.NET MVC 2 Controller
sorry if this might be a cheesy question, but unfortunately I cannot change the project setup.
I have a form on a php page, which is supposed to post some text fields and a file input to a MVC ...
0
votes
1answer
23 views
CodeIgniter detect if Default Controller route was used
In CodeIgniter, is there a way to know if a user was sent to the Default Controller because the route sent them there, OR because the user actually entered that controller in the URL bar.
In other ...
0
votes
2answers
35 views
Zend 2: How to configure errors with custom controller?
My question is regarding customizing how errors are handled in Zend 2.
Suppose I'd like to customize the layout such that I want to do this in an action in my controller:
$layout = ...
0
votes
1answer
25 views
Joomla! 2.5 not reading default layout
Problem I am having is that making a new component I cannot seem to get joomla to read the default layout file. This is happening in both the admin and site side of the component. Comparing it to ...
0
votes
1answer
32 views
Zend Controller configuration to use new Search form
I purchased a boilerplate script for my own personal Google Drive or Dropbox, if you will. One of the first features I wanted to add to this script was the ability to search for files in the ...
1
vote
0answers
20 views
handling of single domain objects in collection by data mapper
My question is related to the update section of the accepted answer in this topic : Who should handle the conditions in complex queries, the data mapper or the service layer?.
For the precise question ...
1
vote
3answers
78 views
Dependency Injection Container vs Registry pattern
I understand that the Dependency Injection principle is all about decoupling code. Instead of making new instances in the classes, instead you inject them, which make them
loosely coupled.
Now if I ...
2
votes
1answer
42 views
OO PHP and MVC: calling a method from another controller?
This may be due to a gap in my understanding of the PHP Object-Oriented model, but bear with me and see if you find it makes any sense/any glaring errors. Anyways, in a MVC app I have two controllers, ...
0
votes
0answers
37 views
Twig renders / display only the view path
I'm creating an mvc structure for learning/teaching purpouses and so far I could set up the structure and a controller plus twig as template system.
The structure is:
index.php
controllers/
...
-3
votes
0answers
27 views
How to access config data in side Model in Zend Framework2 [closed]
I need
$config = $this->getServiceLocator()->get('Config');
to be accessed inside public function of a Model.
How can I do that?
$config = $this->getServiceLocator()->get('Config'); ...
1
vote
1answer
33 views
PHP, MVC, DI(C), Multiple Databases
I'm using a simple project to help me understand and implement MVC with DI in preparation for unit testing. The site simply will display a different table of data based on the page requested. The ...
0
votes
1answer
33 views
In PHP MVC, in which part do I interact with an excel document?
I'm moving all of my scripts to the laravel framework. I interact heavily with excel documents. I am a little unsure of where to actually do this at. I was initially thinking in the model, but it ...
0
votes
3answers
36 views
PHP: How to control multiple instances of Class in MVC (where multiple modules load) without Singleton
I am creating a very basic application framework for my project that uses the standard MVC approach and has support for modules (which I'm calling apps). There are a number of global objects created ...
2
votes
2answers
26 views
complex httaccess redirection for php/yii application
i want this URL: http://m.mysite.com/XYZ12
to redirect here: http://m.mysite.com/index.php?r=myBook/mobile&oid=XYZ12
Note: XYZ12 will be a dynamic string
0
votes
0answers
17 views
Running composer commands from php?
I'm looking at creating a modular application (in this example, assume its something like Wordpress where you have 'plugins'). The 'plugins' will each be their own little MVC structure.
What I want ...
0
votes
1answer
60 views
Not able to load a model in the construct method in the controller of the Laravel 4 framework
Here is the beginning of my controller code:
<?php
class AppController extends BaseController {
/**
* App Model
* @var app
*/
protected $app;
/**
* User Model
...
1
vote
3answers
102 views
Getting familiar with MVC - how do I work with session logic, additional classes and background logic
While coding PHP, I decided to move from spaghetti code and try to implement MVC.
To implement the MVC framework, I vent to this article
Article gave a good start and I managed to create my site, and ...
0
votes
2answers
37 views
Data passing between Controller and DAO within PHP MVC project
I'm working on a PHP MVC project, and the type of data interaction with the database is enough to facilitate the inclusion of a data access layer. The view will use Ajax to pass JSON objects to the ...
0
votes
0answers
38 views
Code-igniter MVC and HMVC
Thank you guys for reading this post.
I have developed a entire application with code-igniter.
Now clients wants to me to make the future enhancement in MVC.
it is possible to keep my existing MVC ...
0
votes
2answers
49 views
Logic before “dispatch”-event
I want to do some logic before MvcEvent::EVENT_DISPATCH, but MvcEvent::getTarget() function returns object of Mvc\Application instead of Controller if I set priority above 1 like:
...
0
votes
1answer
41 views
Zend count affected rows
I am new to using the zend framework and and am really struggling. I am also as new to working with MVC.
I have created a simple CRUD application and am working on the update part. Updating the ...
0
votes
0answers
46 views
What should be returned in model?
I'm very confused in this problem. For example, I have a "user" database table. What I've been taught in my university about MVC is:
I must have a User model object which contain properties, ...
0
votes
1answer
21 views
add tank_auth validation to several controllers in codeigniter
I have several controllers using Tank Auth like:
class Buscar_animal extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->database();
...
0
votes
1answer
15 views
doctrine dbal count number of querys executed
I have build my own mvc framework and i'm using Doctrine DBAL 2.3 as database layer.
At the moment i'm working on a profiler for this framework.
One of the things i want to put in the profiler is the ...
3
votes
2answers
45 views
Where to validate a forms referrer and token in a MVC application?
I validate all my forms data in the model layer but I also check where my form was submitted from (HTTP Referrer) and I also send a token with the form to help prevent Cross Site Request Forgeries and ...
0
votes
3answers
62 views
How to go on with own MVC framework [closed]
I'm trying to build a MVC based framework in PHP.
We will use it to run our websites on.
This is my setup so far:
Request > Router > Controller ^ ( Moddel into registry ) > View (templates, can be ...
0
votes
2answers
59 views
Critique this MVC approach in Codeigniter [closed]
From a conventional standpoint, I am trying to figure out if what I am doing is considered OK, and if not, what the alternative is.
Here is an example of my set up:
Controller:
function index()
{
...
0
votes
2answers
40 views
How is a cache system effective in the php lifecycle?
I'm a little confused here.
I know that for every PHP request, the entire application is bootstrapped all over again.
Given this, how can a cache be effective, if all of the globals are reloaded for ...
-2
votes
1answer
49 views
Naming and organizing controllers in MVC [closed]
In my custom MVC framework I'm working on, I currently have all the controllers in a single folder:
controllers
-> CalendarController.php
-> ForumController.php
-> IndexController.php
...
1
vote
1answer
39 views
How to implement MVC with Datamapper in PHP
Earlier I asked this question:
should-i-create-an-object-or-work-with-an-array
I am now trying tho think beyond the concept that I was working with. Please share your thoughts with me. I want to GET ...
0
votes
3answers
38 views
Zend framework Class 'Model_DbTable_indexview' not found in <Directory>
I just installed a script i purchased and i'm facing issues with the file not found. I checked the function and Model_DbTable_indexview do exist in the model folder. Is there anywhere that i should ...
0
votes
0answers
30 views
404 Page Not Found errors on existing pages
I have build a PHP MVC framework, pretty much like ZF1.x, for learning purposes and private use, anyways I started putting it at a test with link cloaking script, but every time I visit a page I see ...
1
vote
1answer
43 views
How can view access model to get data for specific output document type?
Welcome,
I'm writing simple Mvc framework for my own usage and I have this problem. In my framework I distinguish different types of view depending on output document type. For instance, I have ...
0
votes
2answers
67 views
Create modules inside a module in CodeIgniter
I am trying to implement HMVC with CodeIgniter. I used this library from bigbucket
CI HMVC Library
It works fine for me when i created admin module. But now i am trying to define module inside a ...
0
votes
0answers
22 views
HMVC architecture - how to load view (strategic decition) - A or B?
I have a strategic decision to make. I am using codeigniter with HMVC and I am not sure which strategy of loading views is better.
Strategy A: Particular controller outputs data and loads the master ...
0
votes
1answer
32 views
Joomla!2.5 Toolbar buttons not working
This question is a "continuation" of Joomla!2.5 Toolbar Not Working, since the correction of an error led to something completely new I can't seem to wrap around my head, since I'm new to Joomla and I ...
1
vote
0answers
46 views
Specifying hydrators for AbstractDbMapper in ZF2
I've made a new module in my ZF2 application that has a model and a mapper. In the Module.php file I have created a factory for the AbstractDbMapper as follows:
public function getServiceConfig()
...
0
votes
1answer
59 views
How to use MVC properly on a mostly static website? [closed]
I'm using the Nette framework, which uses the MVC paradigm. Thing is, my site is supposed to be mostly static, just having a register/login form and a mini-forum/guestbook, other pages will be static. ...
0
votes
1answer
38 views
Proper way to handle Model constants in Magento
What is the proper way to handle constants in models with Magento?
For example, I have an Export class that have numerous status', such as
Cancelled
Pending
Failed
Complete
Currently, I have ...
0
votes
5answers
85 views
Difference between Model and Observer
I am having trouble understanding the difference between an Observer and a Model.
Are they really the same thing?
For instance, I have a Model that exports orders. I have an observer that listens for ...
0
votes
1answer
64 views
PHP Custom MVC Framework using FrontController
I'm little bit confused. I want to build my own framework just to learn how everything works not that I will use it for big projects.
I have a FrontController class and this class has the route ...
0
votes
1answer
54 views
Magento- add submit button to sales order grid
I am using Magento to build a custom extension.
I have added a few new fields to the sales order tables and want to add a new submit button next to each order in the sales order grid in the admin ...
0
votes
0answers
34 views
object-oriented “function libraries” using namespaces in php
I have been developing a MVC framework using php 5.x.x for about six months now. I understand that it is viable to use existing frameworks for the sake of not reinventing the wheel. However the basic ...
0
votes
1answer
14 views
issues trying to use Zend_Config_Xml where the heck is it?
I am using ZF2 and I want to use Zend_Config_Xml. looking at the library, the directory structure looks like so...
Zend/Config/Config.php
Then there is
Zend/Config/Reader/Xml.php
But that does ...
0
votes
2answers
353 views
Laravel template not looping through array of views
Hoping this is some kind of silly oversight on my part, but I've had little luck finding information about this or other examples of similar usages of Laravel. I'm developing a Laravel 4 site whose ...
1
vote
3answers
64 views
what the difference between singleton and Registry design pattern or classes
I have some confusion between the two.
singleton
Check if instance exists return it, or create new one.
Registry
Check if instance exists return it, or create new one and store it.
What the ...
-2
votes
1answer
55 views
How do we edit css in framework? [closed]
I'm builing an simple mvc-framework with an admin-panel where I can perform CRUD operations (ie Create, Read, Update, Delete), upload pictures and change css. My question is how do we change css from ...




