Inheritance: extends Gdn_Model
 /**
  * Class constructor. Defines the related database table name.
  */
 public function __construct() {
    
    self::$MemoryCache = array();
    
    // We don't need this yet
    //parent::__construct('UserMeta');
 }
 /**
  * Class constructor. Defines the related database table name.
  */
 public function __construct()
 {
     self::$MemoryCache = array();
     parent::__construct('UserMeta');
     $this->SQL = clone Gdn::sql();
     $this->SQL->reset();
 }
Beispiel #3
0
 /**
  * Class constructor. Defines the related database table name.
  */
 public function __construct()
 {
     self::$MemoryCache = array();
     parent::__construct('UserMeta');
 }