class IniFileDumper in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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
- class \Symfony\Component\Translation\Dumper\FileDumper implements DumperInterface
- class \Symfony\Component\Translation\Dumper\IniFileDumper
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\DumperView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FileDumper:: |
private | property | Make file backup before the dump. | |
FileDumper:: |
protected | property | A template for the relative paths to files. | 1 |
FileDumper:: |
public | function |
Dumps the message catalogue. Overrides DumperInterface:: |
1 |
FileDumper:: |
private | function | Gets the relative file path using the template. | |
FileDumper:: |
public | function | Sets backup flag. | |
FileDumper:: |
public | function | Sets the template for the relative paths to files. | |
IniFileDumper:: |
public | function |
Transforms a domain of a message catalogue to its string representation. Overrides FileDumper:: |
|
IniFileDumper:: |
protected | function |
Gets the file extension of the dumper. Overrides FileDumper:: |