You are here

class IniFileDumper in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/translation/Dumper/IniFileDumper.php \Symfony\Component\Translation\Dumper\IniFileDumper

IniFileDumper generates an ini formatted string representation of a message catalogue.

@author Stealth35

Hierarchy

Expanded class hierarchy of IniFileDumper

1 file declares its use of IniFileDumper
IniFileDumperTest.php in vendor/symfony/translation/Tests/Dumper/IniFileDumperTest.php

File

vendor/symfony/translation/Dumper/IniFileDumper.php, line 21

Namespace

Symfony\Component\Translation\Dumper
View source
class IniFileDumper extends FileDumper {

  /**
   * {@inheritdoc}
   */
  public function format(MessageCatalogue $messages, $domain = 'messages') {
    $output = '';
    foreach ($messages
      ->all($domain) as $source => $target) {
      $escapeTarget = str_replace('"', '\\"', $target);
      $output .= $source . '="' . $escapeTarget . "\"\n";
    }
    return $output;
  }

  /**
   * {@inheritdoc}
   */
  protected function getExtension() {
    return 'ini';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FileDumper::$backup private property Make file backup before the dump.
FileDumper::$relativePathTemplate protected property A template for the relative paths to files. 1
FileDumper::dump public function Dumps the message catalogue. Overrides DumperInterface::dump 1
FileDumper::getRelativePath private function Gets the relative file path using the template.
FileDumper::setBackup public function Sets backup flag.
FileDumper::setRelativePathTemplate public function Sets the template for the relative paths to files.
IniFileDumper::format public function Transforms a domain of a message catalogue to its string representation. Overrides FileDumper::format
IniFileDumper::getExtension protected function Gets the file extension of the dumper. Overrides FileDumper::getExtension