public function __construct(array $config)
 {
     parent::__construct($config);
     if (!$this->sitemap_priority) {
         $this->sitemap_priority = 0.5;
     }
     if (!$this->sitemap_changefreq) {
         $this->sitemap_changefreq = 'weekly';
     }
 }
Beispiel #2
0
 public function __construct(array $config)
 {
     if (isset($config['cacheData'])) {
         $this->_cacheData = $config['cacheData'];
     }
     if (!isset($config['row'])) {
         $config['row'] = null;
     }
     parent::__construct($config);
 }
 public function __construct(array $config)
 {
     parent::__construct($config);
     $this->_trlRow = $config['trlRow'];
 }