Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-10-24 | Add parameter and return types for all PHP methods | Thomas Lange | 1 | -4/+4 | |
2021-10-24 | Reformat PHP code in "getStructure" method | Thomas Lange | 1 | -1/+5 | |
2021-10-24 | Fix constructor parameters for Resource classes | Thomas Lange | 1 | -1/+1 | |
The first parameter for the constructor of the Resource classes should not be optional if the next parameters obviously are non-optional. The optional parameters (if any) must come after the required parameters. | |||||
2021-10-24 | Remove closing tags and ensure LF at end of files | Thomas Lange | 1 | -1/+0 | |
Remove the unnecessary PHP closing tags and ensure that *all* non-binary files ending with an LF character. | |||||
2018-01-26 | Remove static $count property and use spl_object_hash() instead | Thomas Lange | 1 | -2/+1 | |
2017-11-23 | The file permissions have been normalized. | Thomas Lange | 1 | -0/+0 | |
2017-10-21 | Code optimization: The method "getStructure" has been added to the abstract ↵ | Thomas Lange | 1 | -0/+7 | |
Item class. | |||||
2016-07-10 | Comment updates: Separate email address for code stuff. | Thomas Lange | 1 | -1/+1 | |
2016-07-10 | Each resource has now an ID; Code improvements and comment blocks added. | Thomas Lange | 1 | -26/+11 | |
2016-06-25 | Update with new features and code improvements. | Thomas Lange | 1 | -0/+74 | |
+ New classes have been added: "BigPipe\Resource", "BigPipe\Resource\CSS", "BigPipe\Resource\JS". If you wan't to add a resource to a Pagelet, you can now built a new resource object with the "CSS" or "JS" class (the "Resource" class is abstract and the parent class of "CSS" and "JS") and can add PhaseDoneJS callbacks for this resources with "Resource::addPhaseDoneJS()" similar to "Pagelet::addPhaseDoneJS()". To add the resource to your pagelet: "$Pagelet->addResource($Resource)". Of course, you can still use the two SHORT methods "Pagelet::addCSS()" and "Pagelet::addJS()" which needs only one parameter with the resource URL. + Each resource has now PhaseDoneJS callbacks for 3 phases (Object initializied [INIT], Loading started [LOAD], Loading complete [DONE]). + Check your usage of the PhaseDoneJS callback constants of the Pagelet class: These constants have been renamed. + Debugging mode: Just set BigPipe::debugging(TRUE) and each pagelet and resource will be pass through a function which adds PhaseDoneJS callbacks with debug informations (Look now at the Javascript console and enjoy the beautiful colors which makes the debug informations better readable for your eyes. \(o_o)/). + Several code improvements on almost all files. |