コード例 #1
0
 public function getOptions($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->options, $_key, $_default);
 }
コード例 #2
0
ファイル: user.class.php プロジェクト: GaelGRIFFON/core
 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
ファイル: planHeader.class.php プロジェクト: GaelGRIFFON/core
 public function getConfiguration($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->configuration, $_key, $_default);
 }
コード例 #6
0
ファイル: market.class.php プロジェクト: saez0pub/core
 public function getHardwareCompatibility($_key = '', $_default = '')
 {
     return utils::getJsonAttr($this->hardwareCompatibility, $_key, $_default);
 }
コード例 #7
0
ファイル: eqLogic.class.php プロジェクト: saez0pub/core
 public function getCategory($_key = '', $_default = '')
 {
     if ($_key == 'other' && strpos($this->category, "1") === false) {
         return 1;
     }
     return utils::getJsonAttr($this->category, $_key, $_default);
 }