_db->select(); $select->from($this->_getPair('GridBlock')); $select->where('`id` = ?', (string) $gridId, Qs_Db::INT_TYPE); $this->_gridData = $this->_db->fetchRow($select); if (!$this->_gridData) { return false; } if ($itemData = $this->getData()) { if ($itemData['blockId'] != $this->_gridData['id']) { return false; } } return $this; } public function getGridData() { return $this->_gridData; } }