예제 #1
0
 public function getOptions($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->options, $_key, $_default);
 }
예제 #2
0
 public function getRights($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->rights, $_key, $_default);
 }
예제 #3
0
 public function getFiltres($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->filtres, $_key, $_default);
 }
예제 #4
0
파일: cmd.class.php 프로젝트: jimibi/core
 public function getDisplay($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->display, $_key, $_default);
 }
예제 #5
0
 public function getConfiguration($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->configuration, $_key, $_default);
 }
예제 #6
0
 public function getHardwareCompatibility($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->hardwareCompatibility, $_key, $_default);
 }
예제 #7
0
 public function getCategory($_key = '', $_default = '')
 {
     if ($_key == 'other' && strpos($this->category, "1") === false) {
         return 1;
     }
     return utils::getJsonAttr($this->category, $_key, $_default);
 }