Example #1
0
 /**
  * Retrieve query model object
  *
  * @return Query
  */
 public function getQuery()
 {
     if (!$this->_query) {
         $this->_query = $this->_queryFactory->create()->loadByQuery($this->getQueryText());
         if (!$this->_query->getId()) {
             $this->_query->setQueryText($this->getQueryText());
         }
     }
     return $this->_query;
 }