Pimcore\Model\Translation\AbstractTranslation\Listing\Dao::loadRaw PHP Method

loadRaw() public method

public loadRaw ( ) : array
return array
    public function loadRaw()
    {
        $select = $this->db->select();
        $select->from([static::getTableName()]);
        $this->addConditions($select);
        $this->addGroupBy($select);
        $this->addOrder($select);
        $this->addLimit($select);
        if ($this->onCreateQueryCallback) {
            $closure = $this->onCreateQueryCallback;
            $closure($select);
        }
        $select = (string) $select;
        $translationsData = $this->db->fetchAll($select, $this->model->getConditionVariables());
        return $translationsData;
    }