ecom
E-commerce cms
 All Data Structures Namespaces Files Functions Variables
Protected Member Functions | Private Member Functions
Cms Class Reference
Inheritance diagram for Cms:
ModelBase

Protected Member Functions

 install ()
 
- Protected Member Functions inherited from ModelBase
 install ()
 

Private Member Functions

 createRoute ($category, $controller, $order)
 

Additional Inherited Members

- Public Member Functions inherited from ModelBase
 __construct ($id=null)
 
 getTableName ()
 
 getMeta ($lang=null)
 
 __get ($key)
 
 __set ($key, $value)
 
 save ()
 
 delete ()
 
 selects ($criteria=null, $orderBy=null)
 
 selectById ($id)
 
- Static Public Member Functions inherited from ModelBase
static init ($config=null)
 
static getDbPrefix ()
 
static setup ()
 
- Static Protected Attributes inherited from ModelBase
static $dbo = null
 

Detailed Description

Definition at line 5 of file Cms.php.

Member Function Documentation

createRoute (   $category,
  $controller,
  $order 
)
private

Definition at line 26 of file Cms.php.

27  {
28  $cms = new self();
29  $cms->shurl = $category;
30  $cms->controller = $controller;
31  $cms->order = $order;
32  $cms->save();
33  }
install ( )
protected

Definition at line 7 of file Cms.php.

8  {
9  $dbPrefix = $this->getDbPrefix();
10  $result = self::$dbo->exec("CREATE TABLE IF NOT EXISTS `{$dbPrefix}cms` (
11  `id` INTEGER(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
12  `shurl` VARCHAR(255) NOT NULL,
13  `controller` VARCHAR(255) NOT NULL,
14  `order` INTEGER UNSIGNED NOT NULL DEFAULT 0,
15  UNIQUE(`shurl`)
16  )");
17  if ($result === false)
18  throw new \Exception(get_class().": ".self::$dbo->errorInfo()[2]);
19  self::createRoute("/", "\\Controller\\HomeController", 50);
20  self::createRoute("/:category", "\\Controller\\CategoryController", 50);
21  self::createRoute("/:category/:product", "\\Controller\\ProductController", 50);
22  self::createRoute("/:product", "\\Controller\\ProductController", 60);
23  return true;
24  }
static getDbPrefix()
Definition: ModelBase.php:42

The documentation for this class was generated from the following file: