22 $this->class_scripts = [];
23 $this->class_children = [];
50 foreach ($this->class_scripts as $k => $v) {
57 foreach ($this->class_children as $k => $v) {
64 if (!isset($this->class_scripts[$class])) {
67 return $this->class_scripts[$class];
73 throw new \InvalidArgumentException(
74 "Can't add class script for an empty class." 78 if (isset($this->class_scripts[$class]) && $this->class_scripts[$class] != $file_path) {
79 $e = new \RuntimeException(
80 "Can't add script '$file_path' for class '$class', a script for that class already exists." 82 $e->file_path = $file_path;
87 $this->class_scripts[$class] = $file_path;
93 throw new \InvalidArgumentException(
94 "Can't add class child for an empty parent." 98 if (!isset($this->class_children[$parent])) {
99 $this->class_children[$parent] = [];
102 if (!in_array($child, $this->class_children[$parent])) {
103 $this->class_children[$parent][] = $child;
withClassScript(string $class, string $file_path)
getClassScriptOf(string $class)
addClassChild(string $parent, string $child)
The CtrlStructure knows how GUIs call each other and where the code of the guis is located...
addClassScript(string $class, string $file_path)
__construct(array $class_scripts=[], array $class_children=[])
withClassChild(string $parent, string $child)