_getProductObj()->getData($field); } public function setProductId($id) { $this->_getProductObj()->setPrimaryKey($id); return $this; } protected function _getProductObj() { if ($this->_productObj === null) { $this->_productObj = new App_ECommerce_Product_Admin_Obj(); } return $this->_productObj; } public function getObjectInfo() { $data = parent::getObjectInfo(); $productTitle = $this->getProductData('title'); $data['itemName'] = $productTitle . ' Product Additional Image'; $data['itemsName'] = $productTitle . ' Product Additional Images'; return $data; } }