Fixed table presentations with new bootstrap, added HTML::abbr(), added public access to Database::config(), enabled DB compression to be disabled in database.php
This commit is contained in:
@@ -12,7 +12,14 @@
|
||||
* @license http://dev.leenooks.net/license.html
|
||||
*/
|
||||
abstract class lnApp_Database extends Kohana_Database {
|
||||
public function caching() {
|
||||
return $this->_config['caching'];
|
||||
/**
|
||||
* Return a database configuration setting
|
||||
*
|
||||
* @param string Configuration value to return
|
||||
* @return string|NULL Value of setting or NULL if it doesnt exist
|
||||
*/
|
||||
public function config($key) {
|
||||
return isset($this->_config[$key]) ? $this->_config[$key] : NULL;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
Reference in New Issue
Block a user