ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
CsvDictionary.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
Gettext\Extractors
;
4
5
use
Gettext\Translations
;
6
10
class
CsvDictionary
extends
Extractor
implements
ExtractorInterface
11
{
15
public
static
function
fromString
($string,
Translations
$translations = null, $file =
''
)
16
{
17
if
($translations === null) {
18
$translations =
new
Translations
();
19
}
20
21
$handle =
fopen
(
'php://memory'
,
'w'
);
22
23
fputs($handle, $string);
24
rewind($handle);
25
26
$entries = array();
27
while
(
$row
= fgetcsv($handle)) {
28
$entries[
$row
[0]] = $row[1];
29
}
30
31
fclose($handle);
32
33
if
($entries) {
34
foreach
($entries as $original => $translation) {
35
$translations->insert(null, $original)->setTranslation($translation);
36
}
37
}
38
39
return
$translations;
40
}
41
}
Gettext\Extractors\CsvDictionary\fromString
static fromString($string, Translations $translations=null, $file='')
{Parses a string and append the translations found in the Translations instance.The file path to inse...
Definition:
CsvDictionary.php:15
fopen
Translations
Gettext\Translations
Class to manage a collection of translations.
Definition:
Translations.php:11
Gettext\Extractors\Extractor
Definition:
Extractor.php:9
Gettext\Extractors\CsvDictionary
Class to get gettext strings from plain json.
Definition:
CsvDictionary.php:10
Gettext\Extractors\ExtractorInterface
Definition:
ExtractorInterface.php:7
$row
$row
Definition:
migrateto20.php:360
php
Gettext\Extractors
Definition:
Blade.php:3
libs
composer
vendor
gettext
gettext
src
Extractors
CsvDictionary.php
Generated on Thu Jan 16 2025 19:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)