Skip to content

Instantly share code, notes, and snippets.

@smgladkovskiy
Last active December 20, 2015 22:29
Show Gist options
  • Save smgladkovskiy/6205175 to your computer and use it in GitHub Desktop.
Save smgladkovskiy/6205175 to your computer and use it in GitHub Desktop.
Site config for Kohana v3.3 site
<?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' => 'support@company.name',
'version' => $version,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment