Last active
December 20, 2015 22:29
-
-
Save smgladkovskiy/6205175 to your computer and use it in GitHub Desktop.
Site config for Kohana v3.3 site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php defined('SYSPATH') OR die('No direct access allowed.'); | |
$version = 'wip'; | |
$version_config = Kohana::$config->load('version'); | |
if($version_config->as_array()) | |
{ | |
$version = $version_config->version; | |
} | |
return array( | |
'site_name' => 'Sitename', | |
'title_delimeter' => ' | ', | |
'company_name' => 'Companyname', | |
'support_email' => '[email protected]', | |
'version' => $version, | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment