19 declare(strict_types=1);
32 private \ilDBInterface
$db;
40 $this->db = $DIC->database();
60 $set = $this->db->query(
"SELECT module, identifier FROM lng_log ");
61 while ($rec = $this->db->fetchAssoc($set)) {
62 $log[$rec[
"module"] .
":" . $rec[
"identifier"]] = 1;
64 $set = $this->db->query(
"SELECT module, identifier FROM lng_data WHERE lang_key = " .
65 $this->db->quote(
"en",
"text") .
" ORDER BY module, identifier");
66 while ($rec = $this->db->fetchAssoc($set)) {
67 if (!isset(
$log[$rec[
"module"] .
":" . $rec[
"identifier"]])) {
68 $this->candidates[$rec[
"identifier"]] = $rec[
"module"];
78 foreach ($this->
getCodeFiles(ILIAS_ABSOLUTE_PATH) as $file) {
92 \RecursiveIteratorIterator::SELF_FIRST,
93 \RecursiveIteratorIterator::CATCH_GET_CHILD
95 '/' . self::ILIAS_CLASS_FILE_RE .
'/i' 107 $tokens = token_get_all(file_get_contents($file_path));
108 $num_tokens = count($tokens);
110 for ($i = 0; $i < $num_tokens; $i++) {
111 if (is_string($tokens[$i])) {
118 case T_CONSTANT_ENCAPSED_STRING:
119 $lv = str_replace(array(
"'",
'"'),
"", $tokens[$i][1]);
121 unset($this->candidates[$lv]);
parseCodeFile(string $file_path)
Parse code file and reduce candidates.
__construct()
ilLangDeprecated constructor.
parseCodeFiles()
Parse Code Files.
Search for deprecated lang vars.
const ILIAS_CLASS_FILE_RE
getDeprecatedLangVars()
Get deprecated lang vars.
getCandidates()
Get candidates from the db.
getCodeFiles(string $path)
Get code files.