Theme work with focusbusiness and baseadmin

Improvements to NAVBAR, updates to StaticList methods, other minor items
Enable product category rendering and other minor improvements
Added ADSL-large category price plan
This commit is contained in:
Deon George
2013-04-26 11:42:09 +10:00
parent f9fb355ab6
commit 29c1913f47
114 changed files with 1732 additions and 6797 deletions

View File

@@ -10,7 +10,7 @@
* @license http://dev.osbill.net/license.html
*/
class StaticList_Title extends StaticList {
protected function table() {
protected function _table() {
return array(
'mr'=>_('Mr'),
'ms'=>_('Ms'),
@@ -21,8 +21,8 @@ class StaticList_Title extends StaticList {
);
}
public static function factory() {
return new StaticList_Title;
public static function get($value) {
return static::factory()->_get($value);
}
}
?>