0
votes
0answers
25 views

Zend Framework Model construction fails without any errors

I have a Zend Framework application that fails when constructing a new Model, but does not generate any errors. Here's the code that instantiates the Model: public function connectionAction() ...
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
108 views

Zend, cannot find model from the Bootstrap

I'm trying to put a model into the Zend Registry from the main application bootstrap file: public function _initRegistry() { $this->bootstrap('db'); $processmanager = new ...
0
votes
1answer
108 views

save() function Zend Framework

I have found this function in the documentation from Zend, more specific in the Create model and Database Table section ( http://framework.zend.com/manual/1.12/en/learning.quickstart.create-model.html ...
0
votes
1answer
61 views

Zend Model access in singleton class - best approach

I'm looking for best pattern/approach to access one table data in singleton class (in ZF 1.x). In details: I have one singleton class (just like Zend_Date for example) that make for me some basic ...
0
votes
3answers
316 views

Zend Framework Model, Active Record pattern alternative

I'm writing some code that allows users to read reports on a site, using AJAX calls to dynamically load only what is requested, instead of the entire 15+MB report. I'm writing a Model to access all ...
0
votes
2answers
52 views

Cannot access function within model in ZEND

Can anyone see why my check_multi function would return a -- Fatal error: Call to undefined function check_multi() in /var/www/vhosts/aero.onelinksoftware.com/application/models/Design.php on ...
0
votes
1answer
155 views

Zend DB Table and Model one to one

I have class that representing model of user with foreign key with is id of picture . class Model_User extends Model_AbstractEntity { protected $u_id; protected $u_email; protected ...
0
votes
2answers
147 views

Zend_Db_Table and db->select in controller or model

I'm a little bit confused with Zend. Many examples show the usage of Zend_db_Table in the controller. But from what I've learn about MVC, anything about DB should be in the model. Now that Zend is ...
0
votes
4answers
124 views

Zend Bootstrap How do I autoload a model?

I have an auth plugin working. I am trying to add ACL to it according to the excellent video series at http://www.youtube.com/watch?v=b6qsSnLfcmE&feature=relmfu. My problem is that when I try to ...
5
votes
2answers
161 views

Zend Framework: Models, Mappers; Default Fields in Mappers & Field Operations in Models?

I'm creating a simple ORM in Zend Framework, to roughly encapsulate a public library application, using the DbTable/Mapper/Model approach. I'm not sure if the way I'm doing my User-related classes is ...
-1
votes
1answer
98 views

Models not included in Zend Framework

I am really new to Zend Framework and am using it on regular Apache 2 + PHP server. I want to use my models which extend Zend_Table_Abstract. I put it in my /application/models directory but these ...
4
votes
1answer
569 views

zend select query inside joinleft

How to write SELECT query inside JOIN LEFT in a Zend model? for eg how to convert the following mysql query to zend model query LEFT JOIN (SELECT count(*) as game_count,topic_id,time as ...
0
votes
0answers
27 views

No find model when i use Zend_View_Helper_Action

Sorry for my English, it's very poor but i thing you understand my problem. I have module "addons" and "default" in my project. And I use plugin in default module. I show code: public function ...
0
votes
0answers
23 views

Add a new page to zend application [closed]

I have built a simply application that will display space for rent from offices,rooms,shops etc. The site has one table that I want to connect to from all the pages. I have created one page my ...
0
votes
1answer
171 views

Zend Framework Bootstrap.php, Database Model, and Form

So I am working on a sample database project. I have a LoginController.php, a Faculty database, and a login page (phtml). I get the error Fatal error: Class 'Faculty_DB' not found in ...
0
votes
1answer
64 views

Zend Framework coding standards

In case you're not sick of hearing about my chat application... The main part of the application, the piece that does all of the back end work is in the "models" directory. The class is called ...
4
votes
1answer
203 views

How to save an object when you do not know if its parent objects exist or not?

I have three tables, Business: id name Office: id name business_id Employee: id name office_id Employee's have office_id as a foreign key and Offices have business_id as a foreign ...
0
votes
1answer
124 views

Doctrine_Table Vs class That extends from BaseClass

I am a little confused in this Doctrine model concept , lets say we a table called "article" Doctrine will generate class called i am using Zend framework and Doctrine 1.2 ...
0
votes
3answers
636 views

Beginners Tutorial for Zend Framework implementing model and call it from Controller

I'm quite new to ZF, and right now, i try to write a tiny app, based on ZF. It works more or less fine until now. I wanna access my db- data. For starters, i just want to use query-string, before I ...
1
vote
1answer
101 views

ZF Doctrine model class ext Base Class

I am obviously in the deep end. I fail to grasp the benefit of Doctrine ModelClass and Model Table Class extending the Base Model for example class StaffStaff extends Base_StaffStaff { public ...
0
votes
2answers
220 views

Creating multiple models

I'm using Zend Framework and implementing Domain Model. I have Models, Mappers and DbTables. Suppose we should fetch multiple rows from database or fetch form data where we should create multiple ...
0
votes
2answers
130 views

How to create a Zend_Db_Table model

Hy Guys, I have a small problem and i haven't been able to fix it. So, i have this table, called epg_live_channels, and i need to create a Db Table model. I've typed: zf create db-table ...
0
votes
2answers
97 views

PHP / Zend Program architecture and Interfaces

Hi guys i'm trying to wrap my head around where interfaces should be kept. an example : I have a zend mvc multi module application i have been working on and would like to clean it up ( its a real ...
2
votes
2answers
262 views

How to use a model class from a module in the application bootstrap in a Zend Framework based application?

I am developing a Zend Framework MVC application with some modules, in example, the Users module. There is a model class name "Users_Model_User" that can be used in any module/controller operation. ...
1
vote
1answer
78 views

Zend Framework - Handle an application with users and members

I was wondering how to handle separately users and members in an application where all registered users are considered as users, and users who have a team, are considered as members. Others users are ...
3
votes
2answers
1k views

Zend Framework - ORM relationships and optimization

I've been using ZF for few months and I'm really happy with it however I'm not completely sure about how to work with models relationships and at the same time avoid multiple queries to the db. Many ...
3
votes
1answer
892 views

Model and backend interface generators for Zend Framework [closed]

By doing some research, one of the disadvantages often reported about Zend Framework is the amount of work required to get off the ground. For me this could be addressed if ZF had strong model and ...
3
votes
2answers
341 views

Zend Framework Model Design

I am building an application in Zend Framework. My model is made up of three layers, domain classes, data mapper classes and a service layer which provides an interface for all external communication. ...
1
vote
1answer
761 views

Zend: Accessing model from Bootstrap raises an exception

This is the code I have in Bootstrap: public function _initRegistry() { $systemConfigModel = new Application_Model_DbTable_SystemConfig(); Zend_Registry::set('config', ...
0
votes
2answers
140 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 ...
3
votes
1answer
102 views

Select exact matching columns from table in Zend…?

I am facing a strange issue in my Zend Application: My model is like this: public function checkEmailAndProfileName($emailId, $proName) { $select = $this->select() ...
0
votes
2answers
165 views

how can i call the model in zend framework

Here is my code now in line no 75 to 104 for using transactions connection, i create an individual model transactions like this <?php class Application_Model_DbTable_Transactions extends ...
3
votes
1answer
128 views

In Zend, where and how are these variables set for the model?

I am looking at the quickstart and wondering how these following values are set in the model: protected $_comment protected $_created; protected $_email; protected $_id; ...
1
vote
5answers
313 views

Persistence with Zend Framework

I have some data which I rarely have to update. Further I want that data to be very fast to access. What kind of solution do you recommend me in Zend Framework. The options I thaught are a Mysql ...
1
vote
1answer
164 views

How to use namespaces and folder structure correctly in Zend Framework models?

I've read about folder structure in Zend Framework and I wanted to put my application logic into correct place folder called models. I've also read that Zend by default uses ...
1
vote
1answer
231 views

Zend Framework: DB / Models: Securing Other Users Rows - Overriding Concrete Methods

I am trying to research the best way to secure users data. Example: An application has a table 'widgets', each user can have as many 'widgets' as required. The application identifies the 'widgets' by ...
0
votes
1answer
104 views

How to load Zend Framework application details from database

I am working on Zend Framework based application and one of the requirement is to create an management panel from where the super-users can dynamically update some of the system configs like change ...
1
vote
1answer
134 views

Zend/Unit Testing: Checking variables after Model is called, before Controller is initiated

I'm doing unit testing on a Zend Framework, and I'm presently testing functions in my model controller. At some point, one of the functions assigns: ...
1
vote
2answers
169 views

how can i use my own model class in zend framework?

i wrote a db class and i want to create my own model class in zend framework.my own model extends from PDO and it automatic create query to work with database. how can i use my own model class in zend ...
0
votes
1answer
25 views

Using two libraries in two different project in Zend

I'm currently working on my main project but I need to extend some of the models on different project in completely different folder from my main project. Can anybody point me to the right direction ...
0
votes
1answer
2k views

How to get the Request Object from a Model using Zend Framework.

Is there anyway that I can get the request params directly from the model in zend framework? I need it for a constructor, so it doesn't actually need contact with the database. In a controller it's ...
1
vote
2answers
151 views

ZF models correct use

I am struggling with how to understand the correct usage of models. Currently i use the inheritance of Db_Table directly and declare all the business logic there. I know it's not correct way to do ...
0
votes
1answer
428 views

Static constants and methods in a Zend Framework model class

I have a Zend Framework model class like this class UserModel extends Zend_Db_Table_Abstract { protected $_name = 'users'; protected $_primary = "id"; const SEX_MALE = "male"; const ...
0
votes
1answer
105 views

ZF: how to call model from default module?

For example Admin_Model_Type called fine. But Default_Model_Type - doesn't. I tried to call it without default and renamed class form Default_Model_Type to Model_Type. But it doesn't help. I looked ...
0
votes
1answer
732 views

Couldnt call A Model Class in Another Module From Default Module?

My application has the structure : myapp - applcation - modules - default - controllers - models - Acl.php - views - Bootstrap.php ...
0
votes
2answers
261 views

Zend_Db. Am I required to manually set primary and foreign key when building db table?

As I read J.Gilmore Zend Book (Models section): class Game extends Zend_Db_Table_Abstract { protected $_primary='id'; //line 4 } [..]Line 4 identifies the table's primary key.By default the ...
1
vote
2answers
565 views

Zend: Using Row model method inside partialLoop

Zend talk.I have a view called "article" with a partialLoop inside,for displaying all comments in DB for that post: [..] echo $this->partialLoop('_comments.phtml',$this->comments); this is ...
2
votes
3answers
970 views

Initialize a model in Zend Framework

According to this blog post it should be possible to have an init() method within the model. Like this: class MyModel { public function init() { // prepare something } ... ...
0
votes
1answer
46 views

Zf - How to pass from “one class per table” to “several tables per classes”?

This is a general question, and I'm sorry for that. Let's say we have this application that as a class per table, so time arrives and we then need to work with data separate between several tables on ...

1 2 3