Tag Info

Hot answers tagged

5

Neither controller nor model should be redirecting anything anywhere. HTTP Location header is form of a response, which strictly in purview of views. Model layer deals with business logic, it should be completely oblivious even to the existence of presentation layer. Basically, it goes down to this: controllers handle input, views handle output. HTTP ...


3

Unsure where to put math for calculating angles ball should bounce at GameRules is as good a class as any. If your math was more elaborate, you could create a GameMath class. Where should the keyListener go? My first guess would be the GamePanel class. How do I use a "game loop" instead of having the game run through paintComponent()? Your ...


3

Most often in webapplications - MVC or not - redirects are implemented on a high-level layer. In non OOP code this often is a high level global function that knows a lot about the global static state and what represents a request and a response therein. In more OOP driven sites, you find this often as a method with the "response" object (compare Symfony2 ...


2

I would say yes, it is wrong. As far as I understood, while models manage data and views manage layouts (i.e. how data should be displayed), controllers are only and exclusively in charge of the HTTP requests/responses management (in the case of a web app), and redirections typically belong to that tier in my opinion. Examples in common frameworks Symfony: ...


1

Don't get caught up with how things are named in CodeIgniter; some things are named in ways that can be confusing to most people. It sounds to me like you want to implement business logic in your model, and in CodeIgniter it's usually cleaner to do that in a library. Then you can use the the CI_Model classes for the data access layer only. In your case, it ...


1

You can't call your action with the direct URL, because Magento uses nonces in the admin section. You can read about this here: http://alanstorm.com/magento_admin_hello_world_revisited , look for the "Magento Admin URLs"-section.


1

This is how I did using a generic class. This is not perfect yet. Will update this post as I make changes to it. public class TableTypeDynamicParam<T> : Dapper.SqlMapper.IDynamicParameters { IEnumerable<T> MyList; Dictionary<string, int> ordinals; Dictionary<Type, SqlDbType> typeMap; string ParameterName, ...



Only top voted, non community-wiki answers of a minimum length are eligible