Skip to content
Snippets Groups Projects
Commit 5b7292eb authored by Peter Rotich's avatar Peter Rotich
Browse files

Config Items

Make config items caching class instance based.
parent 5acdf568
No related branches found
Tags v1.9.11
No related merge requests found
...@@ -30,6 +30,10 @@ class Config { ...@@ -30,6 +30,10 @@ class Config {
# new settings and the corresponding default values. # new settings and the corresponding default values.
var $defaults = array(); # List of default values var $defaults = array(); # List of default values
# Items
var $items = null;
function __construct($section=null, $defaults=array()) { function __construct($section=null, $defaults=array()) {
if ($section) if ($section)
$this->section = $section; $this->section = $section;
...@@ -129,16 +133,18 @@ class Config { ...@@ -129,16 +133,18 @@ class Config {
function destroy() { function destroy() {
unset($this->session); unset($this->session);
return $this->items()->delete(); if ($this->items)
$this->items->delete();
return true;
} }
function items() { function items() {
static $items;
if (!isset($items)) if (!isset($this->items))
$items = ConfigItem::items($this->section, $this->section_column); $this->items = ConfigItem::items($this->section, $this->section_column);
return $items; return $this->items;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment