Before I used a framework, I d often define things like so (so my code makes more sense to read)
define( MINUTE , 60);
define( HOUR , MINUTE * 60); // etc
Is anything like this built into Kohana 3, or should I specify this myself (perhaps in bootstrap.php)?