Gutted config system to use a PHP array instead of 1980's INI files. Broke down the database layer to support multiple types of interfaces and started laying out the Mongo interface class.
This commit is contained in:
parent
9fe5ce72d4
commit
630a1276aa
10 changed files with 437 additions and 331 deletions
|
@ -61,7 +61,7 @@ class Display_PHP extends Display_Common
|
|||
ob_start();
|
||||
|
||||
// Puts the class variables in local scope for the template
|
||||
$form_class = (isset($this->config->pickles['form']) ? $this->config->pickles['form'] : 'Form');
|
||||
$form_class = (isset($this->config->pickles['classes']['Form']) ? $this->config->pickles['classes']['Form'] : 'Form');
|
||||
|
||||
$__config = $this->config;
|
||||
$__meta = $this->meta_data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue