PHP code example of bmidget / kohana-assets

1. Go to this page and download the library: Download bmidget/kohana-assets library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bmidget / kohana-assets example snippets


class Task_Asset_Compile extends Minion_Task {

	protected function _execute( array $params)
	{
		$asset = Assets::factory();
		$asset->update_config();
	}

}

$this->template->bind('assets', $this->_assets);

$this->_assets = Assets::factory();

if (Kohana::$environment === Kohana::DEVELOPMENT)
{
	$this->_assets->update_config();
}

<?=$assets->get_cached('css', true)