Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
unlimited-elements-for-elementor
/
inc_php
/
framework
/
openweather
/
forecast
:
forecast_has_sun_time.class.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php trait UEOpenWeatherAPIForecastHasSunTime{ /** * Get the sunrise time. * * @return string */ public function getSunrise(){ $sunrise = $this->getAttribute("sunrise"); $sunrise = $this->formatTime($sunrise, "H:i"); return $sunrise; } /** * Get the sunset time. * * @return string */ public function getSunset(){ $sunset = $this->getAttribute("sunset"); $sunset = $this->formatTime($sunset, "H:i"); return $sunset; } }