Added a view to generate the Kohana logo view

This commit is contained in:
Woody Gilk 2009-02-28 11:43:10 +00:00
parent 72bac1eb4e
commit 135e8133f3

View file

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