Home

Awesome

Sprinkle - Asset Management Library

Sprinkle is an asset management library for CodeIgniter which seeks to simplify the process of loading assets on the page. The library includes key features such as auto-loading, combining, compressing CSS or JS files, caching, and much more.

Requirements

How To Use It

1. Load the library

$this->load->spark('sprinkle');

2. Define assets

jquery:
  type: js
  minify: false
  combine: false
  src: http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js

3. Set up asset routes or load assets from the controller

Asset routes

'welcome/(:any)':
  assets:
    - jquery

Load from the controller

$this->sprinkle->load('jquery');

4. Output!

echo $this->sprinkle->output();

See the wiki for more information.

CHANGELOG

1.0.5

1.0.4

1.0.3

Known Issues

COPYRIGHT

Copyright (c) 2011-2012 Edmundas KondraĊĦovas

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.