Ejemplo n.º 1
0
 /**
  * Set default tooltip
  */
 public function setDefaultTooltip()
 {
     $strings = [];
     if (!$this->WindSpeed->isUnknown()) {
         $strings[] = $this->WindSpeed->string();
     }
     if (!$this->WindDegree->isUnknown()) {
         $strings[] = $this->WindDegree->string();
     }
     if (!empty($strings)) {
         $this->setTooltip(__('Wind') . ': ' . implode(', ', $strings));
     }
 }