diff --git a/Admin/Activate.php b/Admin/Activate.php deleted file mode 100644 index d3a0b77..0000000 --- a/Admin/Activate.php +++ /dev/null @@ -1,44 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -namespace Modules\Checklist\Admin; - - -use phpOMS\DataStorage\Database\DatabasePool; -use phpOMS\Module\ActivateAbstract; -use phpOMS\Module\InfoManager; - -/** - * Navigation class. - * - * @category Modules - * @package Modules\Admin - * @author OMS Development Team - * @author Dennis Eichhorn - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class Activate extends ActivateAbstract -{ - - /** - * {@inheritdoc} - */ - public static function activate(DatabasePool $dbPool, InfoManager $info) - { - parent::activate($dbPool, $info); - } -} diff --git a/Admin/Deactivate.php b/Admin/Deactivate.php deleted file mode 100644 index 798c7a2..0000000 --- a/Admin/Deactivate.php +++ /dev/null @@ -1,44 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -namespace Modules\Checklist\Admin; - - -use phpOMS\DataStorage\Database\DatabasePool; -use phpOMS\Module\DeactivateAbstract; -use phpOMS\Module\InfoManager; - -/** - * Navigation class. - * - * @category Modules - * @package Modules\Admin - * @author OMS Development Team - * @author Dennis Eichhorn - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class Deactivate extends DeactivateAbstract -{ - - /** - * {@inheritdoc} - */ - public static function deactivate(DatabasePool $dbPool, InfoManager $info) - { - parent::deactivate($dbPool, $info); - } -} diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json deleted file mode 100644 index 423941d..0000000 --- a/Admin/Install/Navigation.install.json +++ /dev/null @@ -1,63 +0,0 @@ -[ - { - "id": 1003601001, - "pid": "754a08ddf8bcb1cf22f310f09206dd783d42f7dd", - "type": 2, - "subtype": 1, - "name": "Checklist", - "uri": "/{/lang}/backend/checklist/list?{?}", - "target": "self", - "icon": null, - "order": 65, - "from": "Checklist", - "permission": null, - "parent": 1003301001, - "children": [ - { - "id": 1003602001, - "pid": "485c01f6ec77f5370a8060bb44b8a13a985184b5", - "type": 3, - "subtype": 1, - "name": "List", - "uri": "/{/lang}/backend/checklist/list?{?}", - "target": "self", - "icon": null, - "order": 1, - "from": "Checklists", - "permission": null, - "parent": 1003601001, - "children": [] - }, - { - "id": 1003603001, - "pid": "485c01f6ec77f5370a8060bb44b8a13a985184b5", - "type": 3, - "subtype": 5, - "name": "Templates", - "uri": "/{/lang}/backend/checklist/template/list?{?}", - "target": "self", - "icon": null, - "order": 5, - "from": "Checklist", - "permission": null, - "parent": 1003601001, - "children": [] - }, - { - "id": 1003604001, - "pid": "485c01f6ec77f5370a8060bb44b8a13a985184b5", - "type": 3, - "subtype": 5, - "name": "CreateTemplate", - "uri": "/{/lang}/backend/checklist/template/create?{?}", - "target": "self", - "icon": null, - "order": 15, - "from": "Checklist", - "permission": null, - "parent": 1003601001, - "children": [] - } - ] - } -] diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php deleted file mode 100644 index 0fb3fa2..0000000 --- a/Admin/Install/Navigation.php +++ /dev/null @@ -1,40 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -namespace Modules\Checklist\Admin\Install; -use phpOMS\DataStorage\Database\DatabasePool; - -/** - * Navigation class. - * - * @category Modules - * @package Modules\Admin - * @author OMS Development Team - * @author Dennis Eichhorn - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class Navigation -{ - public static function install(string $path, DatabasePool $dbPool) - { - $navData = json_decode(file_get_contents(__DIR__ . '/Navigation.install.json'), true); - - $class = '\\Modules\\Navigation\\Admin\\Installer'; - /** @var $class \Modules\Navigation\Admin\Installer */ - $class::installExternal($dbPool, $navData); - } -} diff --git a/Admin/Installer.php b/Admin/Installer.php deleted file mode 100644 index b39e69b..0000000 --- a/Admin/Installer.php +++ /dev/null @@ -1,49 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -namespace Modules\Checklist\Admin; - -use phpOMS\DataStorage\Database\DatabaseType; -use phpOMS\DataStorage\Database\DatabasePool; -use phpOMS\Module\InfoManager; -use phpOMS\Module\InstallerAbstract; - -/** - * Calendar install class. - * - * @category Modules - * @package Modules\Calendar - * @author OMS Development Team - * @author Dennis Eichhorn - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class Installer extends InstallerAbstract -{ - - /** - * {@inheritdoc} - */ - public static function install(string $path, DatabasePool $dbPool, InfoManager $info) - { - parent::install($path, $dbPool, $info); - - switch ($dbPool->get('core')->getType()) { - case DatabaseType::MYSQL: - break; - } - } -} diff --git a/Admin/Routes/Web/Backend.php b/Admin/Routes/Web/Backend.php deleted file mode 100644 index e4448fc..0000000 --- a/Admin/Routes/Web/Backend.php +++ /dev/null @@ -1,30 +0,0 @@ - [ - [ - 'dest' => '\Modules\Checklist\Controller:viewChecklistList', - 'verb' => RouteVerb::GET, - ], - ], - '^.*/backend/checklist/template/list.*$' => [ - [ - 'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateList', - 'verb' => RouteVerb::GET, - ], - ], - '^.*/backend/checklist/template/create.*$' => [ - [ - 'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateCreate', - 'verb' => RouteVerb::GET, - ], - ], - '^.*/backend/checklist/template/view.*$' => [ - [ - 'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateView', - 'verb' => RouteVerb::GET, - ], - ], -]; diff --git a/Admin/Routes/console.php b/Admin/Routes/console.php deleted file mode 100644 index 1ecbfac..0000000 --- a/Admin/Routes/console.php +++ /dev/null @@ -1,3 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -namespace Modules\Checklist\Admin; - - -use phpOMS\DataStorage\Database\DatabasePool; -use phpOMS\Module\UninstallAbstract; - -/** - * Navigation class. - * - * @category Modules - * @package Modules\Admin - * @author OMS Development Team - * @author Dennis Eichhorn - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class Uninstall extends UninstallAbstract -{ - - /** - * {@inheritdoc} - */ - public static function uninstall(DatabasePool $dbPool, InfoManager $info) - { - parent::uninstall($dbPool, $info); - } -} diff --git a/Admin/Update.php b/Admin/Update.php deleted file mode 100644 index dff6076..0000000 --- a/Admin/Update.php +++ /dev/null @@ -1,46 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -namespace Modules\Checklist\Admin; - - -use phpOMS\DataStorage\Database\DatabasePool; -use phpOMS\Module\UpdateAbstract; -use phpOMS\System\File\Directory; - -/** - * Navigation class. - * - * @category Modules - * @package Modules\Admin - * @author OMS Development Team - * @author Dennis Eichhorn - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class Update extends UpdateAbstract -{ - - /** - * {@inheritdoc} - */ - public static function update(DatabasePool $dbPool, array $info) - { - Directory::deletePath(__DIR__ . '/Update'); - mkdir('Update'); - parent::update($dbPool, $info); - } -} diff --git a/Controller.php b/Controller.php deleted file mode 100644 index df7ee37..0000000 --- a/Controller.php +++ /dev/null @@ -1,140 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -namespace Modules\Checklist; - -use Modules\Navigation\Models\Navigation; -use Modules\Navigation\Views\NavigationView; -use phpOMS\Contract\RenderableInterface; -use phpOMS\Message\RequestAbstract; -use phpOMS\Message\ResponseAbstract; -use phpOMS\Module\ModuleAbstract; -use phpOMS\Module\WebInterface; -use phpOMS\Views\View; -use phpOMS\Views\ViewLayout; - -/** - * Calendar controller class. - * - * @category Modules - * @package Checklist - * @author OMS Development Team - * @author Dennis Eichhorn - * @license OMS License 1.0 - * @link http://orange-management.com - * @since 1.0.0 - */ -class Controller extends ModuleAbstract implements WebInterface -{ - - /** - * Module path. - * - * @var string - * @since 1.0.0 - */ - /* public */ const MODULE_PATH = __DIR__; - - /** - * Module version. - * - * @var string - * @since 1.0.0 - */ - /* public */ const MODULE_VERSION = '1.0.0'; - - /** - * Module name. - * - * @var string - * @since 1.0.0 - */ - /* public */ const MODULE_NAME = 'Checklist'; - - /** - * Providing. - * - * @var string - * @since 1.0.0 - */ - protected static $providing = []; - - /** - * Dependencies. - * - * @var string - * @since 1.0.0 - */ - protected static $dependencies = [ - ]; - - /** - * @param RequestAbstract $request Request - * @param ResponseAbstract $response Response - * @param mixed $data Generic data - * - * @return RenderableInterface - * - * @since 1.0.0 - * @author Dennis Eichhorn - */ - public function viewChecklistList(RequestAbstract $request, ResponseAbstract $response, $data = null) : \Serializable - { - $view = new View($this->app, $request, $response); - $view->setTemplate('/Modules/Checklist/Theme/Backend/checklist-list'); - $view->addData('nav', $this->app->moduleManager->get('Navigation')->createNavigationMid(1003601001, $request, $response)); - - return $view; - } - - /** - * @param RequestAbstract $request Request - * @param ResponseAbstract $response Response - * @param mixed $data Generic data - * - * @return RenderableInterface - * - * @since 1.0.0 - * @author Dennis Eichhorn - */ - public function viewChecklistTemplateList(RequestAbstract $request, ResponseAbstract $response, $data = null) : \Serializable - { - $view = new View($this->app, $request, $response); - $view->setTemplate('/Modules/Checklist/Theme/Backend/checklist-template-list'); - $view->addData('nav', $this->app->moduleManager->get('Navigation')->createNavigationMid(1003601001, $request, $response)); - - return $view; - } - - /** - * @param RequestAbstract $request Request - * @param ResponseAbstract $response Response - * @param mixed $data Generic data - * - * @return RenderableInterface - * - * @since 1.0.0 - * @author Dennis Eichhorn - */ - public function viewChecklistTemplateCreate(RequestAbstract $request, ResponseAbstract $response, $data = null) : \Serializable - { - $view = new View($this->app, $request, $response); - $view->setTemplate('/Modules/Checklist/Theme/Backend/checklist-template-create'); - $view->addData('nav', $this->app->moduleManager->get('Navigation')->createNavigationMid(1003601001, $request, $response)); - - return $view; - } - -} diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php deleted file mode 100644 index cb67768..0000000 --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ /dev/null @@ -1,21 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -return ['Navigation' => [ - 'Checklist' => 'Checklist', - 'Checklists' => 'Checklists', - 'CreateCheclist' => 'CreateCheclist', - 'Templates' => 'Templates', -]]; diff --git a/Theme/Backend/Lang/api.en.lang.php b/Theme/Backend/Lang/api.en.lang.php deleted file mode 100644 index d28b242..0000000 --- a/Theme/Backend/Lang/api.en.lang.php +++ /dev/null @@ -1,17 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -return ['Navigation' => [ -]]; diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php deleted file mode 100644 index cbf7b83..0000000 --- a/Theme/Backend/Lang/en.lang.php +++ /dev/null @@ -1,31 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -return ['Checklist' => [ - 'Checklist' => 'Checklist', - 'Checklists' => 'Checklists', - 'Created' => 'Created', - 'Creator' => 'Creator', - 'Description' => 'Description', - 'Files' => 'Files', - 'General' => 'General', - 'Name' => 'Name', - 'Permissions' => 'Permissions', - 'Status' => 'Status', - 'Tasks' => 'Tasks', - 'Templates' => 'Templates', - 'TimeInMinutes' => 'Time in minutes', - 'Title' => 'Title', -]]; diff --git a/Theme/Backend/checklist-list.tpl.php b/Theme/Backend/checklist-list.tpl.php deleted file mode 100644 index 68c9f90..0000000 --- a/Theme/Backend/checklist-list.tpl.php +++ /dev/null @@ -1,59 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -/** - * @var \phpOMS\Views\View $this - */ - -$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response); -$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig'); - -$footerView->setPages(1 / 25); -$footerView->setPage(1); -$footerView->setResults(1); - -echo $this->getData('nav')->render(); ?> - -
-
-
- - - - - - - $value) : $c++; - $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/checklist/single?{?}&id=' . $value->getId()); ?> - - -
getText('Checklists'); ?>
getText('ID', 0, 0); ?> - getText('Status'); ?> - getText('Name'); ?> - getText('Creator'); ?> - getText('Created'); ?> -
render(); ?> -
getId(); ?> - getName(); ?> - getParent(); ?> - getUnit(); ?> - - -
getText('Empty', 0, 0); ?> - -
-
-
-
diff --git a/Theme/Backend/checklist-template-create.tpl.php b/Theme/Backend/checklist-template-create.tpl.php deleted file mode 100644 index 0a43929..0000000 --- a/Theme/Backend/checklist-template-create.tpl.php +++ /dev/null @@ -1,70 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -/** - * @var \phpOMS\Views\View $this - */ - -echo $this->getData('nav')->render(); ?> - -
-
-
-

getText('General'); ?>

-
-
- -
-
-
-
-
-
- - -
-
-
-
-
-
-
-
- -
-
-

getText('Tasks'); ?>

-
-
- -
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
\ No newline at end of file diff --git a/Theme/Backend/checklist-template-list.tpl.php b/Theme/Backend/checklist-template-list.tpl.php deleted file mode 100644 index 2283b00..0000000 --- a/Theme/Backend/checklist-template-list.tpl.php +++ /dev/null @@ -1,59 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -/** - * @var \phpOMS\Views\View $this - */ - -$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response); -$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig'); - -$footerView->setPages(1 / 25); -$footerView->setPage(1); -$footerView->setResults(1); - -echo $this->getData('nav')->render(); ?> - -
-
-
- - - - - - - $value) : $c++; - $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/checklist/single?{?}&id=' . $value->getId()); ?> - - -
getText('Templates'); ?>
getText('ID', 0, 0); ?> - getText('Status'); ?> - getText('Name'); ?> - getText('Creator'); ?> - getText('Created'); ?> -
render(); ?> -
getId(); ?> - getName(); ?> - getParent(); ?> - getUnit(); ?> - - -
getText('Empty', 0, 0); ?> - -
-
-
-
diff --git a/Theme/backend/Lang/Navigation.en.lang.php b/Theme/backend/Lang/Navigation.en.lang.php deleted file mode 100644 index cb67768..0000000 --- a/Theme/backend/Lang/Navigation.en.lang.php +++ /dev/null @@ -1,21 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -return ['Navigation' => [ - 'Checklist' => 'Checklist', - 'Checklists' => 'Checklists', - 'CreateCheclist' => 'CreateCheclist', - 'Templates' => 'Templates', -]]; diff --git a/Theme/backend/Lang/api.en.lang.php b/Theme/backend/Lang/api.en.lang.php deleted file mode 100644 index d28b242..0000000 --- a/Theme/backend/Lang/api.en.lang.php +++ /dev/null @@ -1,17 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -return ['Navigation' => [ -]]; diff --git a/Theme/backend/Lang/en.lang.php b/Theme/backend/Lang/en.lang.php deleted file mode 100644 index cbf7b83..0000000 --- a/Theme/backend/Lang/en.lang.php +++ /dev/null @@ -1,31 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -return ['Checklist' => [ - 'Checklist' => 'Checklist', - 'Checklists' => 'Checklists', - 'Created' => 'Created', - 'Creator' => 'Creator', - 'Description' => 'Description', - 'Files' => 'Files', - 'General' => 'General', - 'Name' => 'Name', - 'Permissions' => 'Permissions', - 'Status' => 'Status', - 'Tasks' => 'Tasks', - 'Templates' => 'Templates', - 'TimeInMinutes' => 'Time in minutes', - 'Title' => 'Title', -]]; diff --git a/Theme/backend/checklist-list.tpl.php b/Theme/backend/checklist-list.tpl.php deleted file mode 100644 index 68c9f90..0000000 --- a/Theme/backend/checklist-list.tpl.php +++ /dev/null @@ -1,59 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -/** - * @var \phpOMS\Views\View $this - */ - -$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response); -$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig'); - -$footerView->setPages(1 / 25); -$footerView->setPage(1); -$footerView->setResults(1); - -echo $this->getData('nav')->render(); ?> - -
-
-
- - - - - - - $value) : $c++; - $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/checklist/single?{?}&id=' . $value->getId()); ?> - - -
getText('Checklists'); ?>
getText('ID', 0, 0); ?> - getText('Status'); ?> - getText('Name'); ?> - getText('Creator'); ?> - getText('Created'); ?> -
render(); ?> -
getId(); ?> - getName(); ?> - getParent(); ?> - getUnit(); ?> - - -
getText('Empty', 0, 0); ?> - -
-
-
-
diff --git a/Theme/backend/checklist-template-create.tpl.php b/Theme/backend/checklist-template-create.tpl.php deleted file mode 100644 index 0a43929..0000000 --- a/Theme/backend/checklist-template-create.tpl.php +++ /dev/null @@ -1,70 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -/** - * @var \phpOMS\Views\View $this - */ - -echo $this->getData('nav')->render(); ?> - -
-
-
-

getText('General'); ?>

-
-
- -
-
-
-
-
-
- - -
-
-
-
-
-
-
-
- -
-
-

getText('Tasks'); ?>

-
-
- -
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
\ No newline at end of file diff --git a/Theme/backend/checklist-template-list.tpl.php b/Theme/backend/checklist-template-list.tpl.php deleted file mode 100644 index 2283b00..0000000 --- a/Theme/backend/checklist-template-list.tpl.php +++ /dev/null @@ -1,59 +0,0 @@ - - * @author Dennis Eichhorn - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link http://orange-management.com - */ -/** - * @var \phpOMS\Views\View $this - */ - -$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response); -$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig'); - -$footerView->setPages(1 / 25); -$footerView->setPage(1); -$footerView->setResults(1); - -echo $this->getData('nav')->render(); ?> - -
-
-
- - - - - - - $value) : $c++; - $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/checklist/single?{?}&id=' . $value->getId()); ?> - - -
getText('Templates'); ?>
getText('ID', 0, 0); ?> - getText('Status'); ?> - getText('Name'); ?> - getText('Creator'); ?> - getText('Created'); ?> -
render(); ?> -
getId(); ?> - getName(); ?> - getParent(); ?> - getUnit(); ?> - - -
getText('Empty', 0, 0); ?> - -
-
-
-
diff --git a/info.json b/info.json deleted file mode 100644 index 425d042..0000000 --- a/info.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "name": { - "id": 1003600000, - "internal": "Checklist", - "external": "OMS Checklist" - }, - "version": "1.0.0", - "requirements": { - "phpOMS": "1.0.0", - "phpOMS-db": "1.0.0" - }, - "creator": { - "name": "Orange Management", - "website": "www.spl1nes.com" - }, - "description": "The administration module.", - "directory": "Checklist", - "dependencies": { - "Admin" : "1.0.0" - }, - "providing": { - "Navigation": "*" - }, - "load": [ - { - "pid": [ - "485c01f6ec77f5370a8060bb44b8a13a985184b5" - ], - "type": 4, - "for": "Content", - "file": "Checklist", - "from": "Checklist" - }, - { - "pid": [ - "754a08ddf8bcb1cf22f310f09206dd783d42f7dd" - ], - "type": 5, - "from": "Checklist", - "for": "Navigation", - "file": "Navigation" - } - ] -}