eZ\Publish\Core\Persistence\Legacy\Content\Section\Gateway\ExceptionConversion::loadSectionData PHP Метод

loadSectionData() публичный Метод

Loads data for section with $id.
public loadSectionData ( integer $id ) : string[][]
$id integer
Результат string[][]
    public function loadSectionData($id)
    {
        try {
            return $this->innerGateway->loadSectionData($id);
        } catch (DBALException $e) {
            throw new RuntimeException('Database error', 0, $e);
        } catch (PDOException $e) {
            throw new RuntimeException('Database error', 0, $e);
        }
    }