In Kohana, is there a quick and easy way to use the HTML::style() helper to automatically include a UNIX timestamp mtime of a file after the CSS or JS file name in the case of a script?
In CakePHP, I would just use the HTML/css helper and this in the configuration:
Configure::write('Asset.timestamp', 'force');
This way when doing the following:
echo $this->Html->css('styles');
It would output:
<link rel="stylesheet" type="text/css" href="/css/styles.css?1338350352" />