tags:

views:

32

answers:

1
+2  Q: 

Model Helper Zend

from what i know there is only action helper & view helper available at zend framework.

is there any model helper?

or how we can implement the model helper?

A: 

There's nothing in ZF actually called a Model helper - but if your model is accessing a database table you might want to create it as a class which extends Zend_Db_Table_Abstract. See examples in the ZF manual: http://framework.zend.com/manual/en/zend.db.table.html

lawnjam