I have the current basic structure for each domain object that I need to create:
class Model_Company extends LP_Model { protected static $_gatewayName = 'Model_Table_Company'; protected static $_gateway; protected static $_class; public static function init() { if(self::$_gateway == null) { self::$_gateway = new self::$_gatewayName(); self::$_class = get_class(); } } public static function get() { self::init(); $param = func_get_arg(0); if($param instanceof Zend_Db_Table_Row_Abstract) { $row = $param; } elseif(is_numeric($param)) { $row = self::$_gateway->find($param)->current(); } return new self::$_class($row); } public static function getCollection() { self::init(); $param = func_get_arg(0); if($param instanceof Zend_Db_Table_Rowset_Abstract) { $rowset = $param; } elseif(!$param) { $rowset = self::$_gateway->fetchAll(); } $array = array (); foreach ($rowset as $row) { $array[] = new self::$_class($row); } return $array; } }
I initially tried to refactor the static methods into the parent LP_Model class only to learn finally what ‘late static binding’ means in the php world.
I’m just wondering if anyone has suggestions on how to refactor this code so that I don’t have to redeclare the same three functions in every domain object that I create?
How about this:
Unfortunately, to make the functions easy to call, you have to duplicate
get()andgetCollection()in each subclass. The other option is to call the function in the parent class:You can rename the base class and its function names if you want to go that route. But the point is that you must name the child class in one place or the other: either make a boilerplate function in the child class as in my first example, or else name the class in a string as in my second example.