diff options
Diffstat (limited to 'Neutron-trunk/api/engine-cyclic/components/widgets.php')
-rw-r--r-- | Neutron-trunk/api/engine-cyclic/components/widgets.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Neutron-trunk/api/engine-cyclic/components/widgets.php b/Neutron-trunk/api/engine-cyclic/components/widgets.php deleted file mode 100644 index c2a903c..0000000 --- a/Neutron-trunk/api/engine-cyclic/components/widgets.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php -rlgps("Loading widgets"); -$json = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/widgets.json")); -$widgets = $json->list; -foreach ($widgets as $widget): ?> -<?php $data = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/widgets/" . $widget . "/feature.json")); ?> -<h6 class="widgets-header"><?= getName($data) ?></h6> -<?php - -if (isset($data->class) && is_string($data->class)) { - $class = $data->class; - new $class(); -} else { - require $_SERVER['DOCUMENT_ROOT'] . "/widgets/" . $widget . "/source.php"; -} - -?> -<?php endforeach ?>
\ No newline at end of file |