Added getting site config from DB
This commit is contained in:
parent
b6802e4b5d
commit
147d035e46
@ -1,6 +1,27 @@
|
|||||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||||
|
|
||||||
class Config extends lnApp_Config {
|
class Config extends lnApp_Config {
|
||||||
|
// Our setup object
|
||||||
|
public $so;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load our site configuration from the DB
|
||||||
|
*
|
||||||
|
* We cant do this in __construct(), since Kohana hasn't been fully initialised yet.
|
||||||
|
*/
|
||||||
|
public function loadsite() {
|
||||||
|
// Anti-loop, if we have loaded our record, just return;
|
||||||
|
if ($this->so AND $this->so->loaded())
|
||||||
|
return $this;
|
||||||
|
|
||||||
|
$this->so = ORM::factory('setup',array('nonssl_url'=>URL::base('http')));
|
||||||
|
|
||||||
|
if (! $this->so->loaded())
|
||||||
|
throw new Kohana_Exception(_('Site [:site] not defined in DB?'),array(':site'=>URL::base('http')));
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find a list of all database enabled modules
|
* Find a list of all database enabled modules
|
||||||
*
|
*
|
||||||
|
@ -11,6 +11,18 @@
|
|||||||
* @license http://dev.leenooks.net/license.html
|
* @license http://dev.leenooks.net/license.html
|
||||||
*/
|
*/
|
||||||
class Controller_TemplateDefault extends Controller_lnApp_TemplateDefault {
|
class Controller_TemplateDefault extends Controller_lnApp_TemplateDefault {
|
||||||
|
protected function _headimages() {
|
||||||
|
// This is where we should be able to change our country
|
||||||
|
// @todo To implement
|
||||||
|
$co = Config::instance()->so->country;
|
||||||
|
HeadImages::add(array(
|
||||||
|
'img'=>sprintf('img/country/%s.png',strtolower($co->two_code)),
|
||||||
|
'attrs'=>array('onclick'=>"target='_blank';",'title'=>$co->display('name'))
|
||||||
|
));
|
||||||
|
|
||||||
|
return HeadImages::factory();
|
||||||
|
}
|
||||||
|
|
||||||
protected function _left() {
|
protected function _left() {
|
||||||
if ($this->template->left)
|
if ($this->template->left)
|
||||||
return $this->template->left;
|
return $this->template->left;
|
||||||
|
@ -12,49 +12,43 @@
|
|||||||
* @license http://dev.leenooks.net/license.html
|
* @license http://dev.leenooks.net/license.html
|
||||||
*/
|
*/
|
||||||
abstract class lnApp_Config extends Kohana_Config {
|
abstract class lnApp_Config extends Kohana_Config {
|
||||||
|
protected static $logo = 'img/logo-small.png';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Some early initialisation
|
||||||
|
*
|
||||||
|
* At this point, KH hasnt been fully initialised either, so we cant rely on
|
||||||
|
* too many KH functions yet.
|
||||||
|
* NOTE: Kohana doesnt provide a parent construct for the Kohana_Config class.
|
||||||
|
*/
|
||||||
|
public function __construct() {
|
||||||
|
if (Kohana::$is_cli) {
|
||||||
|
if (! $site = CLI::options('site'))
|
||||||
|
throw new Kohana_Exception(_('Cant figure out the site, use --site= for CLI'));
|
||||||
|
else
|
||||||
|
$_SERVER['SERVER_NAME'] = $site['site'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return our site name
|
* Return our site name
|
||||||
*/
|
*/
|
||||||
public static function site() {
|
public static function site() {
|
||||||
if (! empty($_SERVER['SERVER_NAME']))
|
|
||||||
return $_SERVER['SERVER_NAME'];
|
return $_SERVER['SERVER_NAME'];
|
||||||
|
|
||||||
if (! $site = CLI::options('site'))
|
|
||||||
throw new Kohana_Exception(_('Cant figure out the site, use --site= for CLI'));
|
|
||||||
|
|
||||||
// @todo Need to move this to earlier into the processing stream.
|
|
||||||
// we can then do away with the test above.
|
|
||||||
$_SERVER['SERVER_NAME'] = $site['site'];
|
|
||||||
|
|
||||||
return $site['site'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Work out our site ID for multiehosting
|
* Work out our site ID for multiehosting
|
||||||
* @todo Change this to query the DB for site number.
|
|
||||||
*/
|
*/
|
||||||
public static function siteid() {
|
public static function siteid() {
|
||||||
$sites = Kohana::config('config.site');
|
return Config::instance()->loadsite()->so->id;
|
||||||
|
|
||||||
// If we havent been configured for sites
|
|
||||||
if (is_null($sites) OR ! is_array($sites) OR ! isset($sites[static::site()]))
|
|
||||||
return 0;
|
|
||||||
else
|
|
||||||
return $sites[static::site()];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Work out our site mode (dev,test,prod)
|
* Work out our site mode (dev,test,prod)
|
||||||
* @todo Change this to query the DB for mode.
|
|
||||||
*/
|
*/
|
||||||
public static function sitemode() {
|
public static function sitemode() {
|
||||||
$sites = Kohana::config('config.site_mode');
|
return Config::instance()->loadsite()->so->status;
|
||||||
|
|
||||||
// If we havent been configured for sites
|
|
||||||
if (is_null($sites) OR ! is_array($sites) OR ! isset($sites[static::site()]))
|
|
||||||
return Kohana::PRODUCTION;
|
|
||||||
else
|
|
||||||
return $sites[static::site()];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function sitemodeverbose() {
|
public static function sitemodeverbose() {
|
||||||
@ -69,20 +63,22 @@ abstract class lnApp_Config extends Kohana_Config {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static function sitename() {
|
public static function sitename() {
|
||||||
return Kohana::config('config.site_name');
|
return Config::instance()->loadsite()->so->site_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Called in Invoice/Emailing to embed the file.
|
||||||
public static function logo_file() {
|
public static function logo_file() {
|
||||||
// @todo Move the logo filename to a config file
|
list ($path,$suffix) = explode('.',static::$logo);
|
||||||
return Kohana::find_file(sprintf('media/%s',Config::siteid()),'img/logo-small','png');
|
return Kohana::find_file(sprintf('media/%s',Config::siteid()),$path,$suffix);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function logo_uri() {
|
||||||
|
list ($path,$suffix) = explode('.',static::$logo);
|
||||||
|
return Route::get('default/media')->uri(array('file'=>$path.'.'.$suffix),array('alt'=>static::sitename()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function logo() {
|
public static function logo() {
|
||||||
// @todo Move the logo filename to a config file
|
return HTML::image(static::logo_uri(),array('class'=>'headlogo','alt'=>_('Logo')));
|
||||||
$mediapath = Route::get('default/media');
|
|
||||||
$logo = $mediapath->uri(array('file'=>'img/logo-small.png'),array('alt'=>static::sitename()));
|
|
||||||
|
|
||||||
return HTML::image($logo,array('class'=>'headlogo','alt'=>_('Logo')));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
class lnApp_HeadImages extends HTMLRender {
|
class lnApp_HeadImages extends HTMLRender {
|
||||||
protected static $_data = array();
|
protected static $_data = array();
|
||||||
protected static $_spacer = ' ';
|
protected static $_spacer = ' ';
|
||||||
protected static $_required_keys = array('url','img');
|
protected static $_required_keys = array('img');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return an instance of this class
|
* Return an instance of this class
|
||||||
@ -35,7 +35,10 @@ class lnApp_HeadImages extends HTMLRender {
|
|||||||
|
|
||||||
foreach (static::$_data as $value) {
|
foreach (static::$_data as $value) {
|
||||||
$i = HTML::image($mediapath->uri(array('file'=>$value['img'])),array('alt'=>isset($value['attrs']['title']) ? $value['attrs']['title'] : ''));
|
$i = HTML::image($mediapath->uri(array('file'=>$value['img'])),array('alt'=>isset($value['attrs']['title']) ? $value['attrs']['title'] : ''));
|
||||||
|
if (isset($value['url']))
|
||||||
$output .= HTML::anchor($value['url'],$i,(isset($value['attrs']) && is_array($value['attrs'])) ? $value['attrs'] : null);
|
$output .= HTML::anchor($value['url'],$i,(isset($value['attrs']) && is_array($value['attrs'])) ? $value['attrs'] : null);
|
||||||
|
else
|
||||||
|
$output .= $i;
|
||||||
$output .= static::$_spacer;
|
$output .= static::$_spacer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,6 +39,8 @@ class ORM extends Kohana_ORM {
|
|||||||
|
|
||||||
// Add our OSB site_id to each SELECT query
|
// Add our OSB site_id to each SELECT query
|
||||||
final protected function _build($type) {
|
final protected function _build($type) {
|
||||||
|
// Exclude tables without site ID's
|
||||||
|
if (! in_array($this->_table_name,array('setup','country','currency','tax')))
|
||||||
$this->where($this->_table_name.'.site_id','=',Config::siteid());
|
$this->where($this->_table_name.'.site_id','=',Config::siteid());
|
||||||
|
|
||||||
return parent::_build($type);
|
return parent::_build($type);
|
||||||
|
@ -223,6 +223,9 @@ function sqlConditions($db,$Conditions=false,$Tables=false) {
|
|||||||
|
|
||||||
# Add the SITE ID
|
# Add the SITE ID
|
||||||
if (! is_array($Tables) || count($Tables) == 1) {
|
if (! is_array($Tables) || count($Tables) == 1) {
|
||||||
|
if ($Tables == 'setup')
|
||||||
|
$where .= sprintf('id=%s',DEFAULT_SITE);
|
||||||
|
else
|
||||||
$where .= sprintf('site_id=%s',DEFAULT_SITE);
|
$where .= sprintf('site_id=%s',DEFAULT_SITE);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user