Ejemplo n.º 1
0
 /**
  * Return whether given block type and ID correspond to active grid
  * 
  * @param string $blockType Block type
  * @param string $blockId Block ID in layout
  * @return bool
  */
 public function matchGridBlock($blockType, $blockId)
 {
     if (!is_null($this->_typeModel)) {
         return $this->_typeModel->matchGridBlock($blockType, $blockId, $this);
     }
     return false;
 }