Пример #1
0
 /**
  * Constructor
  *
  * @param bool $debugEnabled
  * @param null $logger
  */
 public function __construct($debugEnabled = false, $logger = null)
 {
     parent::__construct();
     $this->debugEnabled = $debugEnabled;
     $this->logger = $logger;
     $this->table = $this->db->prefix . 'gg_galleries_resources';
     $this->excluded = $this->db->prefix . 'gg_galleries_excluded';
 }
Пример #2
0
 /**
  * Constructor.
  */
 public function __construct($debugEnabled = false)
 {
     parent::__construct();
     $this->debugEnabled = (bool) $debugEnabled;
     $this->table = $this->db->prefix . 'gg_photos_pos';
 }
Пример #3
0
 /**
  * Constructor
  * @param bool $debugEnabled
  */
 public function __construct($debugEnabled, $code)
 {
     parent::__construct((bool) $debugEnabled);
     $this->table = $this->db->prefix . 'gg_stats';
     $this->pluginCode = $code;
 }
Пример #4
0
 /**
  * Constructor
  * @param bool $debugEnabled
  */
 public function __construct($debugEnabled = false)
 {
     parent::__construct($debugEnabled);
     $this->debugEnabled = (bool) $debugEnabled;
     $this->table = $this->db->prefix . 'gg_galleries';
 }
Пример #5
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->table = $this->db->prefix . 'gg_settings_presets';
 }