]> git.mxchange.org Git - friendica-addons.git/commitdiff
move widget HTML into smarty3 template and update styling
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 13 Jul 2015 05:05:55 +0000 (07:05 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 13 Jul 2015 05:05:55 +0000 (07:05 +0200)
curweather/curweather.css
curweather/curweather.php
curweather/templates/widget.tpl [new file with mode: 0644]

index 6c1279634daf400b1ad6beb2f311017adb625140..a0b7c8fb01871c34a75fe1a3d12f6b6868c555fa 100644 (file)
@@ -1,10 +1,7 @@
-
-#curtemp-settings-label, #curtemp-location-label, #curtemp-enable-label {
-       float: left;
-       width: 200px;
-       margin-bottom: 25px;
+ul.curweather-details li {
+    list-type: none;
 }
-#curtemp-network {
-       float: left;
+p.curweather-footer {
+    font-size: 0.8em;
 }
 
index 6db89428f4a0d2342b3bd086005e11ec009b18a8..29b16512bd019f03e5f1e5cc5690a772b6ad7bcf 100644 (file)
@@ -34,10 +34,11 @@ function curweather_uninstall() {
 //  the caching time depending on the plans they got from openweathermap.org
 //  and the usage of the friendica temppath
 
-class ExampleCache extends AbstractCache
+class CWCache extends AbstractCache
 {
     private function urlToPath($url)
     {
+       //  take friendicas tmp directory as base for the cache
        $tmp = get_config('system','temppath');
         $dir = $tmp . DIRECTORY_SEPARATOR . "OpenWeatherMapPHPAPI";
         if (!is_dir($dir)) {
@@ -104,7 +105,7 @@ function curweather_network_mod_init(&$fk_app,&$b) {
     // Get OpenWeatherMap object. Don't use caching (take a look into
     // Example_Cache.php to see how it works).
     //$owm = new OpenWeatherMap();
-    $owm = new OpenWeatherMap(null, new ExampleCache(), $cachetime);
+    $owm = new OpenWeatherMap(null, new CWCache(), $cachetime);
     
     try {
        $weather = $owm->getWeather($rpt, $units, $lang, $appid);
@@ -118,23 +119,29 @@ function curweather_network_mod_init(&$fk_app,&$b) {
        $pressure = $weather->pressure;
        $wind = $weather->wind->speed->getDescription().', '.$weather->wind->speed . " " . $weather->wind->direction;
        $description = $weather->clouds->getDescription();
+       $city = array(
+           'name'=>$weather->city->name,
+           'lon' =>$weather->city->lon,
+           'lat' =>$weather->city->lat
+       );
     } catch(OWMException $e) {
         info ( 'OpenWeatherMap exception: ' . $e->getMessage() . ' (Code ' . $e->getCode() . ').');
     } catch(\Exception $e) {
         info ('General exception: ' . $e->getMessage() . ' (Code ' . $e->getCode() . ').');
     }
 
-    $curweather = '<div id="curweather-network" class="widget">
-               <div class="title tool">
-                <h4>'.t("Current Weather").': '.$weather->city->name.'</h4></div>';
-
-    $curweather .= "$description; $temp<br />";
-    $curweather .= t('Relative Humidity').": $rhumid<br />";
-    $curweather .= t('Pressure').": $pressure<br />";
-    $curweather .= t('Wind').": $wind<br />";
-    $curweather .= '<span style="font-size:0.8em;">'. t('Data by').': <a href="http://openweathermap.org">OpenWeatherMap</a>. <a href="http://openweathermap.org/Maps?zoom=7&lat='.$weather->city->lat.'&lon='.$weather->city->lon.'&layers=B0FTTFF">'.t('Show on map').'</a></span>';
-
-    $curweather .= '</div><div class="clear"></div>';
+    $t = get_markup_template("widget.tpl", "addon/curweather/" );
+    $curweather = replace_macros ($t, array(
+       '$title' => t("Current Weather"),
+       '$city' => $city,
+       '$description' => $description,
+       '$temp' => $temp,
+       '$relhumidity' => array('caption'=>t('Relative Humidity'), 'val'=>$rhumid),
+       '$pressure' => array('caption'=>t('Pressure'), 'val'=>$pressure),
+       '$wind' => array('caption'=>t('Wind'), 'val'=> $wind),
+       '$databy' =>  t('Data by'),
+       '$showonmap' => t('Show on map')
+    ));
 
     $fk_app->page['aside'] = $curweather.$fk_app->page['aside'];
 
diff --git a/curweather/templates/widget.tpl b/curweather/templates/widget.tpl
new file mode 100644 (file)
index 0000000..e90a348
--- /dev/null
@@ -0,0 +1,15 @@
+<div id="curweather-network" class="widget">
+       <div class="title tool">
+               <h4>{{$title}}: {{$city['name']}}</h4>
+       </div>
+       <p>{{$description}}, {{$temp}}
+       <ul class="curweather-details">
+               <li>{{$relhumidity['caption']}}: {{$relhumidity['val']}}</li>
+               <li>{{$pressure['caption']}}: {{$pressure['val']}}</li>
+               <li>{{$wind['caption']}}: {{$wind['val']}}</li>
+       </ul></p>
+       <p class="curweather-footer">
+               {{$databy}}: <a href="http://openweathermap.org">OpenWeatherMap</a>. <a href="http://openweathermap.org/Maps?zoom=7&lat={{$lat}}&lon={{$lon}}&layers=B0FTTFF">{{$showonmap}}</a>
+       </p>
+</div>
+<div class="clear"></div>