Kohana v3.3.0

This commit is contained in:
Deon George
2013-04-22 14:09:50 +10:00
commit f96694b18f
1280 changed files with 145034 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
// Get the latest logo contents
$data = base64_encode(file_get_contents('http://kohanaframework.org/media/img/kohana.png'));
// Create the logo file
file_put_contents('logo.php', "<?php
/**
* Kohana Logo, base64_encoded PNG
*
* @copyright (c) 2008-2012 Kohana Team
* @license http://kohanaframework.org/license
*/
return array('mime' => 'image/png', 'data' => '{$data}'); ?>");