-1
votes
1answer
16 views

How do you make parts of pre-made 3D model change color based on users choice? [closed]

So lets say I have a 3D model of wardrobe. How can I make it so on website user selects color of wardrobe and it changes image to it? so they can choose: wardrobe trim, body, handles color and it ...
1
vote
2answers
46 views

Pass variables between functions in model

I have such function in model. function news() { $data = array( 'title' => $this->input->post('title'), 'date' => $this->input->post('date'), ...
0
votes
1answer
27 views

Yii CDbTestCase findByAttributes is creating a row

I am writing a unit test, and I stumbled upon a very strange behavior. I have a test fixture so I expect to see 1 row in the database (there is only 1 row listed in the fixture) I wrote some code to ...
0
votes
1answer
28 views

Codeigniter controllers for subpages? (New to Codeigniter please help)

I am new to codeigniter so please excuse my stupidity. I am building a client portal and I have my admin / client login setup I am currently working on the admin area first so I have my controller ...
0
votes
0answers
10 views

Customer Attributes - Calling standard customer model object

I am using an extension to set additional customer attributes in magento (http://amasty.com/customer-attributes.html). Those attributes are by default set on the One Page checkout under Billing ...
0
votes
2answers
34 views

Manage multiple tables relationed in CakePHP

So, i have three tables Table: Users _________________ | id | user | ------------------- | 1 | Roy | | 2 | Ben | |________|________| Table: Hability_lists // Where i set ...
2
votes
1answer
45 views

CakePHP Model::save allowed partially blank data during record insertion

I was investigating CakePHP (2.3.4) Model::save method to insert new records and ran into a little snag: //Two fields provided, email field intended to fail validation $data = array('Member' => ...
0
votes
0answers
36 views

Where have I to define my entities?

i am working an my own PHP mvc framework. Now I want to know where to get and specify my entities. An example, should I do this: class User_Model extends Model { private $name; public getName() {} ...
0
votes
2answers
48 views

cakephp magic find function with generic field

I want this $this->$model_name->findByProgram_id($id) to be executed something like this $this->$model_name->findBy.$field_id($id) where $field_id = 'program_id and $id is the ...
-2
votes
1answer
44 views

Is it possible to add __get and __set to Codeigniter Model? [closed]

Instead of having a getter and a setter for each column I want to update from the Model I would like to use __get and __set in my Model but it doesnt work. here's an example: class Video extends ...
0
votes
1answer
23 views

how to add another folder level to send framework autoloader?

i have this simple setup -controllers IndexController.php here somewhere i call new Application_Model_Sites_Sites() +layouts -models -sites Sites.php class ...
0
votes
1answer
60 views

Using Yii active record to read multiple rows from DB

I would like to be able to read multiple rows using the Yii framework without having to create multiple model objects. With that In mind, I'm setting up a CDbCriteria with a condition of the form ...
0
votes
0answers
40 views

Working with MY_Model

I'm still having an issue with relationships when working with the following model. https://github.com/jamierumbelow/codeigniter-base-model I'm trying to make the join so that the themes table and ...
0
votes
1answer
106 views

Load model variables when eager loading resources in Laravel 4

I am returning JSON data from a REST API in which I eager load related models (resources in this case). // In my controller (FooController.php) public function show($id) { return ...
0
votes
1answer
50 views

Model Validation Not Working

I have following action to handle register $model=new User('checkout'); if(!empty($_POST['User'])){ $model->attributes = $_POST['User']; //echo '<pre>';echo ...
0
votes
0answers
54 views

Undefined property error in my Controller in CodeIgniter 2 [closed]

I am currently in the process of upgrading my custom news system to CodeIgniter 2.1.3. Can someone explain why I am getting the following error when trying to visit the news section: A PHP Error was ...
1
vote
2answers
47 views

object property to text

I am retrieving a integer from my database which should correspond to a text string when output. $sql = ('SELECT drinking, smoking FROM users WHERE id = ?') $q = $this->db->query($sql, ...
1
vote
1answer
57 views

How to separate Model (business logic and store logic)? [duplicate]

I have a PHP project with classical MVC structure. Models contains business logic and store logic(we use MongoDB). Now project grows and model became too complicated. I am going to separate models ...
0
votes
1answer
42 views

Retrieving data through two model relationships

I'm trying to retrieve some data through two model relationships with CakePHP. The models and their associations are as follows: User hasOne Profile HABTM Skill I would like the user's skills to be ...
0
votes
0answers
65 views

MySQL LIKE search with CakePHP

I'm trying to implement simple search functionality to my CakePHP application. I want users to be able to search based on a members first name, last name and the skills the member has. My models are ...
1
vote
0answers
50 views

How to reorder data in a tree stored using the nested set model?

I have a table with the following structure CREATE TABLE `nested_set` ( `id` int(11) unsigned NOT NULL auto_increment, `lft` int(11) NOT NULL, `rgt` int(11) NOT NULL, `id_parent` ...
0
votes
4answers
74 views

Set field value for single database row

I'm trying to update a row on my profiles table to reset a users profile picture to the default of user.png. I have the following action in my controller: public function deleteProfilePicture() { ...
0
votes
2answers
49 views

where to change the base class of the model made with doctrine in symfony?

I am using symfony to create a project (first project) and I read the documentation and all, and everything worked fine, I created with doctrine the classes that represents my DB, everything good, but ...
0
votes
2answers
53 views

Codeigniter - Use the id from a query result in a model to query in a different function in the same model

I'm using codeigniter to code my site and I'm running into a roadblock. I know how to do this in regular, non "MVC", not OOP PHP, but am struggling on it in Codeigniter. I have blog_model.php, which ...
0
votes
0answers
72 views

Code doesn't work in model but work in controller

I have been doing my CodeIgniter project smoothly until just now. I came across a weird problem I have the following code. //This part generate error $this->load->model('Task_model'); ...
1
vote
1answer
31 views

PHP ORM how to set id in constructor

I have a basic problem with following code: <?php interface UserInterface { public function getId(); public function getName(); } class User implements UserInterface { private $_id; ...
0
votes
0answers
43 views

Designing model function with revision tracking that is CRUD like

I have a mysql database that holds a table of entities and a table of revisions and I am developing a model class that my scripts will use to pull or put data. Each new entity needs to be approved by ...
2
votes
1answer
45 views

CodeIgniter CLI - passing multiple args to method

I'm testing out some models from a CodeIgniter project via CLI, the method in question has two arguments: public function get_questions_from_block($block_name, $return_array = FALSE) I have tried ...
0
votes
0answers
69 views

Codeigniter - loading of model creates an issue with instances

I'm using CodeIgniter and have created several classes (in my model folder): Entity is an abstract class (used to represent anything that will be in a form and go into a database) Login extends ...
1
vote
1answer
101 views

Codeigniter loading a library in a static function

I have a static function in my users_model, called isLoggedin(), that needs a library I made. I can't get it to load! It's in the libraries folder under the name SessionsHelper.php and has a class ...
0
votes
1answer
28 views

run models together

Applying each individual model, there is no way to rollback or prevent any insert run MODEL_A: MODEL_B inserts even if shoot Exception MODEL_B: MODEL_A inserts even if shoot Exception $ MODEL_A-> ...
1
vote
0answers
49 views

MVC - Several models have to do the same thing, how not to duplicate code? [closed]

I want to ask you, what would be strict and what would be optimal (or both ;p ) approach to my problem with MVC. I have an application that consists of few panels. Each panel have own controller and ...
1
vote
2answers
170 views

ZF2 where expression

In mu ZF2 project I have Model using TableGateway. Inside function responsible for fetching objects based on search criteria (city, postal_code, range, type). Generally I fetch rows of data by simple ...
2
votes
1answer
84 views

fat model and skinny controller design confusion between the controller method and model method

i'm newbie in MVC (using codeIgniter as my example) and i have read MVC fat model and skinny controller for like 3 times, what i got : model does the hardwork while controller calls the model and ...
0
votes
0answers
37 views

Problems implementing data mapper pattern for custom PHP framework [duplicate]

Apologies in advance for the complexity of this question! After reading about the Data Mapper pattern here on Stack Overflow, I'm in the middle of refactoring the Model layer of my own PHP framework. ...
0
votes
0answers
39 views

Magento: Overwrite a model that is in an extension

Magento question. I just bought and installed a Canada Post extension that calculates the shipping cost. It works fine but I want to tweak it a little bit. I don't want to modify directly the ...
1
vote
2answers
104 views

Magento model won't save values

I'm working on a backend module that saves to a custom table. My problem is that I've added fields to this table as I've been working on it, the newly added fields won't save with the model ->Save() ...
0
votes
2answers
42 views

codeigniter models in controller is not loading

This is my controller: class Orders extends CI_Controller { public function index() { //get model and db entries $this->load->model('order_model', 'orders', TRUE); }} When i open the ...
0
votes
0answers
43 views

jamie rumbelow's codeignter my_model issue

I have put the my_model file in core folder. And created my model as class User_model extends MY_Model { public $_table = 'users'; public $primary_key = 'user_id'; function ...
5
votes
3answers
80 views

php DAL - separate entity and database?

I've been researching and reading a lot about working with separate layers in PHP to create maintainable and readable code. However, I see a lot of code where the entity and the database access is ...
0
votes
1answer
87 views

Model attributes from dropdown list not transfering

I have a resume table that has (among other things) a position_type_id column that is a foreign key to the position_type table. On the resume creation form, the options for the dropdown list for ...
1
vote
4answers
66 views

How do i call the function I created in my Model on the view

I just created this function in the model to see who im following in my social network... how do i call it in the view?? function isfollowing($following){ $user_id = ...
0
votes
2answers
40 views

Error Number 1054 on CRUD application

i am getting this error anyone know what is could be the cause of this ? i think its something with the model but cant figure out. Error Number: 1054 Unknown column 'id' in 'order clause' ...
0
votes
1answer
46 views

CodeIgniter loading from multiple controllers and models

HI everyone I only recently started Using CodeIgniter I have a simple question is it normal to use multiple models and controllers for the same view ? What I want to do is to have a controller and a ...
2
votes
1answer
28 views

Returning objects in php?

Will returning an object in php make a new instance of that object? I have a class that stores objects for me in that class is a method that returns any given object. Example; class Simple { ...
1
vote
2answers
37 views

MVC in php, model for categories?

I am building my first little app with PHP and trying to do MVC. My website requires quite large arrays of cities and categories. My question is a fairly simple one but as the arrays are data for ...
1
vote
2answers
190 views

How do I get access to the getServiceLocator in zend 2 from my own library

I have been developing a project in zend 1 but decided to move over to zend 2 to take advantages of things like events etc. My initial problem is that I can't seem to find any tutorials on how to use ...
0
votes
1answer
62 views

How much column mapping in phalcon models impacts performance?

Does column mapping Phalcon\Mvc\Model column mapping impact performance? I am working on application, that would be under highloads and i am worrying about that.
0
votes
1answer
37 views

Should i declare model class properties in phalcon when using Phalcon\Mvc\Model::columnMap()?

Usually we need to define public properties in model class, that represent table columns. As was said in docs and on development forums defining such public properties increases perfomance. But if we ...
1
vote
1answer
91 views

updateAll with relationships in CakePHP 2

I try update all Orders in the system, but have a "where" condition. How can I do that in CakePHP 2.3? // OrderFood.php (Model) $orderFood = $this->updateAll( array( 'OrderFood.price' ...

1 2 3 4 5 10