This library allows you to load architect projects directly into your application without loading the js files separately.
The supplied internal project parser is resolving all conflicts and provides the sorted code.
You can build a modular project by loading projects into containers without modifying any of your projects files.
You can easily extend the internal project parser
\ExtJSLoader\ProjectParser::registerParser((
new Parser()
));
If you provide the application to external customers and you don't want to deploy your project files, you can load project from a 'compiled' (dump) file.
$loader = new \ExtJSLoader\Project(
"TestArchitectProject", // Application name
__DIR__ . "/../test/TestArchitectProject", // Root directory
__DIR__ . "/TestCompiledProject.xvt", // Compiled path!
"test-destination" // Target div (render destination)
);
// Use compiled project if exists
$loader->load(true, true);
// Get code
echo $loader->getCode();
Easy implementation
- Load architect project
- Load compiled architect project
- Extend loader with a custom parser
- Minify / Compress JS output
To use this library you need to add the following in your composer.json
philip1337/php-extjs-loader
or run the following command in your project root
composer require philip1337/php-extjs-loader
This project is released under the GPL v3 license, so feel free to share or modify it.
To get a faster bug resolvement please provide an example code.