Exemplo n.º 1
0
 public function getOptions($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->options, $_key, $_default);
 }
Exemplo n.º 2
0
 public function getRights($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->rights, $_key, $_default);
 }
Exemplo n.º 3
0
 public function getFiltres($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->filtres, $_key, $_default);
 }
Exemplo n.º 4
0
 public function getDisplay($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->display, $_key, $_default);
 }
Exemplo n.º 5
0
 public function getConfiguration($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->configuration, $_key, $_default);
 }
Exemplo n.º 6
0
 public function getHardwareCompatibility($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->hardwareCompatibility, $_key, $_default);
 }
Exemplo n.º 7
0
 public function getCategory($_key = '', $_default = '')
 {
     if ($_key == 'other' && strpos($this->category, "1") === false) {
         return 1;
     }
     return utils::getJsonAttr($this->category, $_key, $_default);
 }