コード例 #1
0
ファイル: Weather.php プロジェクト: rob-st/Runalyze
 /**
  * Full string
  * 
  * Complete string for the weather conditions with icon, name and temperature.
  * @return string
  */
 public function fullString($isNight = false)
 {
     $icon = $this->Condition->icon();
     if ($isNight == true) {
         $icon->setAsNight();
     }
     return $icon->code() . ' ' . $this->Condition->string() . ' ' . __('at') . ' ' . $this->Temperature->asString();
 }
コード例 #2
0
ファイル: Weather.php プロジェクト: guancio/Runalyze
 /**
  * Full string
  * 
  * Complete string for the weather conditions with icon, name and temperature.
  * @return string
  */
 public function fullString()
 {
     return $this->Condition->icon()->code() . ' ' . $this->Condition->string() . ' ' . __('at') . ' ' . $this->Temperature->asString();
 }