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

loadAllLanguagesData() abstract public method

Loads the data for all languages.
abstract public loadAllLanguagesData ( ) : string[][]
return string[][]
    public abstract function loadAllLanguagesData();

Usage Example

Exemplo n.º 1
0
 /**
  * Loads the data for all languages
  *
  * @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);
     }
 }
All Usage Examples Of eZ\Publish\Core\Persistence\Legacy\Content\Language\Gateway::loadAllLanguagesData