コード例 #1
0
ファイル: SVG.php プロジェクト: GrumpyKater/grumpyFhem
 /**
  * @param $device
  */
 protected function parseInternals($device)
 {
     parent::parseInternals($device);
     $this->gplotFile = $device->Internals->GPLOTFILE;
     $this->logDevice = $device->Internals->LOGDEVICE;
     $this->logFile = $device->Internals->LOGFILE;
 }
コード例 #2
0
ファイル: Watchdog.php プロジェクト: GrumpyKater/grumpyFhem
 public function parse($device)
 {
     parent::parse($device);
     $this->cmd = $device->Internals->CMD;
     $this->to = $device->Internals->TO;
     return $this;
 }
コード例 #3
0
 protected function getAttributeKeys()
 {
     return array_merge(array('INTERVAL'), parent::getAttributeKeys());
 }
コード例 #4
0
ファイル: FileLog.php プロジェクト: GrumpyKater/grumpyFhem
 protected function getAttributeKeys()
 {
     return array_merge(parent::getAttributeKeys(), array('logtype'));
 }
コード例 #5
0
 protected function parseReadings($device)
 {
     return parent::parseReadings($device);
 }