├── .gitignore ├── .gitlab-ci.yaml ├── Cli ├── DevelopmentKit.php └── templates │ └── migration.php.tmpl ├── ComponentStarter.php ├── Controller.php ├── ControllerAPI.php ├── Dispatcher.php ├── Helper ├── ACL │ ├── Base.php │ ├── Core.php │ └── Dummy.php ├── Injector.php ├── Migrations.php ├── ObjectLike.php ├── Restful.php └── Singleton.php ├── Legacy ├── Controller.php ├── Dispatcher.php └── View.php ├── Loader.php ├── Model.php ├── README.md ├── Renderer ├── Api.php ├── Edge.php └── PlainPHP.php ├── View.php ├── Wireframe └── Migration.php ├── composer.json ├── composer.lock ├── layouts ├── create.blade.php ├── crud │ ├── create.blade.php │ ├── edit.blade.php │ ├── form.blade.php │ ├── form │ │ └── field.blade.php │ ├── index.blade.php │ └── show.blade.php ├── debug │ └── debug_query.html.php ├── edit.blade.php ├── index.blade.php └── show.blade.php ├── manifest.xml └── package.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | vendor/ -------------------------------------------------------------------------------- /.gitlab-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/.gitlab-ci.yaml -------------------------------------------------------------------------------- /Cli/DevelopmentKit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Cli/DevelopmentKit.php -------------------------------------------------------------------------------- /Cli/templates/migration.php.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Cli/templates/migration.php.tmpl -------------------------------------------------------------------------------- /ComponentStarter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/ComponentStarter.php -------------------------------------------------------------------------------- /Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Controller.php -------------------------------------------------------------------------------- /ControllerAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/ControllerAPI.php -------------------------------------------------------------------------------- /Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Dispatcher.php -------------------------------------------------------------------------------- /Helper/ACL/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Helper/ACL/Base.php -------------------------------------------------------------------------------- /Helper/ACL/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Helper/ACL/Core.php -------------------------------------------------------------------------------- /Helper/ACL/Dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Helper/ACL/Dummy.php -------------------------------------------------------------------------------- /Helper/Injector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Helper/Injector.php -------------------------------------------------------------------------------- /Helper/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Helper/Migrations.php -------------------------------------------------------------------------------- /Helper/ObjectLike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Helper/ObjectLike.php -------------------------------------------------------------------------------- /Helper/Restful.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Helper/Restful.php -------------------------------------------------------------------------------- /Helper/Singleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Helper/Singleton.php -------------------------------------------------------------------------------- /Legacy/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Legacy/Controller.php -------------------------------------------------------------------------------- /Legacy/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Legacy/Dispatcher.php -------------------------------------------------------------------------------- /Legacy/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Legacy/View.php -------------------------------------------------------------------------------- /Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Loader.php -------------------------------------------------------------------------------- /Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Model.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/README.md -------------------------------------------------------------------------------- /Renderer/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Renderer/Api.php -------------------------------------------------------------------------------- /Renderer/Edge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Renderer/Edge.php -------------------------------------------------------------------------------- /Renderer/PlainPHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Renderer/PlainPHP.php -------------------------------------------------------------------------------- /View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/View.php -------------------------------------------------------------------------------- /Wireframe/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/Wireframe/Migration.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/composer.lock -------------------------------------------------------------------------------- /layouts/create.blade.php: -------------------------------------------------------------------------------- 1 | @extends('crud.create') 2 | -------------------------------------------------------------------------------- /layouts/crud/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/layouts/crud/create.blade.php -------------------------------------------------------------------------------- /layouts/crud/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/layouts/crud/edit.blade.php -------------------------------------------------------------------------------- /layouts/crud/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/layouts/crud/form.blade.php -------------------------------------------------------------------------------- /layouts/crud/form/field.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/layouts/crud/form/field.blade.php -------------------------------------------------------------------------------- /layouts/crud/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/layouts/crud/index.blade.php -------------------------------------------------------------------------------- /layouts/crud/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/layouts/crud/show.blade.php -------------------------------------------------------------------------------- /layouts/debug/debug_query.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/layouts/debug/debug_query.html.php -------------------------------------------------------------------------------- /layouts/edit.blade.php: -------------------------------------------------------------------------------- 1 | @extends('crud.edit') 2 | -------------------------------------------------------------------------------- /layouts/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('crud.index') 2 | -------------------------------------------------------------------------------- /layouts/show.blade.php: -------------------------------------------------------------------------------- 1 | @extends('crud.show') 2 | -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/manifest.xml -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomplace/X/HEAD/package.xml --------------------------------------------------------------------------------