19 declare(strict_types=1);
53 public function __construct(
string $less_variables_file_path_name)
63 public function read(): void
65 $last_variable_comment =
'';
66 $last_category_id =
'';
67 $last_category_name =
'';
69 $regex_category =
'/\/\/==\s(.*)/';
70 $regex_category_by_line =
'/^\/\/[\s]?$/';
71 $regex_category_comment =
'/\/\/##\s(.*)/';
72 $regex_variable =
'/^@(.*)/';
73 $regex_variable_comment =
'/\/\/\*\*\s(.*)/';
74 $regex_variable_name =
'/(?:@)(.*)(?:\:)/';
75 $regex_variable_value =
'/(?::)(.*)(?:;)/';
76 $regex_variable_references =
'/(?:@)([a-zA-Z0-9_-]*)/';
89 $last_line_is_category =
false;
91 while (($line = fgets($handle)) !==
false) {
93 if ($last_line_is_category && preg_match($regex_category_by_line, $line,
$out)) {
94 $line = fgets($handle);
96 $last_line_is_category =
false;
97 if (preg_match($regex_category, $line,
$out)) {
100 $last_category_name =
$out[1] ?:
'';
101 $last_line_is_category =
true;
102 } elseif (preg_match($regex_category_comment, $line,
$out)) {
104 $last_category = $this->
getItemById($last_category_id);
105 $last_category->setComment(
$out[1]);
106 } elseif (preg_match($regex_variable_comment, $line,
$out)) {
108 $last_variable_comment =
$out[1];
109 } elseif (preg_match($regex_variable, $line,
$out)) {
113 preg_match($regex_variable_name,
$out[0], $variable);
116 preg_match($regex_variable_value, $line, $value);
119 $temp_value = $value[0];
121 while (preg_match($regex_variable_references, $temp_value, $reference)) {
122 $references[] = $reference[1];
123 $temp_value = str_replace($reference,
'', $temp_value);
129 $last_variable_comment,
133 $last_variable_comment =
'';
158 foreach ($this->items as $item) {
159 $output .= $item->__toString();
166 $id = array_push($this->items, $item) - 1;
168 if (get_class($item) ==
'ilSystemStyleLessComment') {
169 $this->comments_ids[] =
$id;
170 } elseif (get_class($item) ==
'ilSystemStyleLessCategory') {
171 $this->categories_ids[] =
$id;
172 } elseif (get_class($item) ==
'ilSystemStyleLessVariable') {
173 $this->variables_ids[] =
$id;
186 foreach ($this->categories_ids as $category_id) {
187 $categories[] = $this->items[$category_id];
200 foreach ($this->variables_ids as $variables_id) {
201 if (!$category || $this->items[$variables_id]->getCategoryName() == $category) {
202 $variables[] = $this->items[$variables_id];
211 return $this->items[
$id];
216 foreach ($this->variables_ids as $variables_id) {
217 if ($this->items[$variables_id]->getName() ==
$name) {
218 return $this->items[$variables_id];
228 foreach ($this->variables_ids as
$id) {
229 foreach ($this->items[$id]->getReferences() as $reference) {
230 if ($variable_name == $reference) {
231 $references[] = $this->items[
$id]->getName();
240 $references_string =
'';
242 $references_string .=
"$reference; ";
244 return $references_string;
249 $references_string =
'';
251 $references_string .=
"$reference; ";
256 if ($references_string !=
'') {
257 if ($variable->getComment()) {
258 $info = $variable->getComment() .
'</br>' . $refs_wording .
' ' . $references_string;
260 $info = $refs_wording .
' ' . $references_string;
263 $info = $variable->getComment();
read()
Reads the file from the file system.
getLessVariablesFilePathName()
write()
Write the complete file back to the file system (including comments and random content) ...
string $less_variables_file_path_name
Complete path the the variables file on the file system.
array $categories_ids
Separated array with all category ids (performance reasons)
getRefAndCommentAsString(string $variable_name, string $refs_wording)
Capsules data of a less category in the variables to less file.
addItem(ilSystemStyleLessItem $item)
getVariableByName(string $name='')
setLessVariablesFilePathName(string $less_variables_file_path_name)
array $comments_ids
Separated array with all comments ids (performance reasons)
array $variables_ids
Separated array with all variable ids (performance reasons)
getReferencesToVariableAsString(string $variable_name)
const FILE_OPENING_FAILED
Abstracts content of a less file.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(string $less_variables_file_path_name)
getReferencesToVariable(string $variable_name)
getVariablesPerCategory(string $category='')