eZ\Publish\Core\Persistence\Legacy\Content\Language\Gateway\ExceptionConversion::loadAllLanguagesData PHP Method

loadAllLanguagesData() public method

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