eZ\Publish\Core\Persistence\Legacy\Content\Section\Gateway\ExceptionConversion::loadAllSectionData PHP Method

loadAllSectionData() public method

Loads data for all sections.
public loadAllSectionData ( ) : string[][]
return string[][]
    public function loadAllSectionData()
    {
        try {
            return $this->innerGateway->loadAllSectionData();
        } catch (DBALException $e) {
            throw new RuntimeException('Database error', 0, $e);
        } catch (PDOException $e) {
            throw new RuntimeException('Database error', 0, $e);
        }
    }