Download the PHP package jalle19/yii-yui-clientscript without Composer
On this page you can find all versions of the php package jalle19/yii-yui-clientscript. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jalle19/yii-yui-clientscript
More information about jalle19/yii-yui-clientscript
Files in jalle19/yii-yui-clientscript
Package yii-yui-clientscript
Short Description The end-all, be-all minifying client script implementation for Yii
License BSD-2-Clause
Homepage https://github.com/Jalle19/yii-yui-clientscript
Informations about the package yii-yui-clientscript
yii-yui-clientscript
The end-all, be-all minifying client script implementation for Yii. It is able to combine your CSS and script files as well as minimize them using the YUI compressor (available via the php-yui-compressor package).
Features
- drop-in replacement for the standard CClientScript (no changes to the way you register scripts and stylesheets)
- uses the native Java-based YUI compressor instead of one of the countless more-or-less unmaintained ports of it
- detects global strict mode in JavaScript files and combines such scripts separately from standard scripts
- extracts
@import url("");
(e.g. Google Font imports) statements and prepends them in the combined output to ensure they work correctly - uses unique filenames for the combined files, meaning you won't have to manually implement cache-busting
- compresses inline scripts too
Installation
Use Composer to install, then add the following to your application configuration:
You'll also need to include the Composer autoloader in your bootstrap script. Usually this can be done using require_once('vendor/autoload.php');
.
Configuration
See the documentation for php-yui-compressor for which options are available for the YUI compressor. The options are specified by "compressorOptions" in the component configuration, e.g.:
Excluding files
Sometimes you may want to combine and compress all files but one (perhaps because it changes too often causing all scripts to need re-combination). You can specify a pattern that matches these files using the "exclude" option:
The pattern matching is done using strpos()
on the script URL, meaning in the example above the script MainMenu-typeahead-1.js
(and naturally all other scripts having "MainMenu" in their name) would be registered separately.
Using a custom file resolver
A registered script URL must be converted internally to the absolute path to the file in question. Depending on your project layout the default implementation may not do the trick. In that case you'll need to define your own path resolver:
Example implementation (see the interface for more details):
Turn off remapping of CSS URLs
The default behavior is to remap relative URLs in CSS files to compensate for the fact that the generated combined file will likely be in a different location than the original file. Sometimes though, your project structure does not require any remapping, so you can turn it off:
License
This code is licensed under the New BSD License