diff --git a/administrator/CHANGELOG.php b/administrator/CHANGELOG.php index d9e557c..37de534 100644 --- a/administrator/CHANGELOG.php +++ b/administrator/CHANGELOG.php @@ -11,12 +11,21 @@

Einsatzkomponente für das Joomla-CMS

+

Changelog Version 3.43

+ +

Changelog Version 3.42

Changelog Version 3.40

diff --git a/administrator/config.xml b/administrator/config.xml index 7f7cbca..7ca727f 100644 --- a/administrator/config.xml +++ b/administrator/config.xml @@ -548,7 +548,21 @@ - + + + + + + JYES + + + + com_einsatzkomponente - 2020-02-02 - Copyright (C) 2019 by Ralf Meyer. All rights reserved. + 2020-03-24 + Copyright (C) 2020 by Ralf Meyer. All rights reserved. GNU General Public License version 2 or later Ralf Meyer ralf.meyer@mail.de https://einsatzkomponente.de - 3.42.0 + 3.43.0 Einsatzkomponente

für das Joomla-CMS

-

Copyright (C) 2018 Ralf Meyer

+

Copyright (C) 2020 Ralf Meyer

Website: www.einsatzkomponente.de

+

Dieses Projekt jetzt unterstützen: +


Alternativ können Sie die Kontodaten per Email anfordern.

+

]]>
diff --git a/administrator/helpers/osm.php b/administrator/helpers/osm.php index 9118601..0d197a0 100644 --- a/administrator/helpers/osm.php +++ b/administrator/helpers/osm.php @@ -307,7 +307,7 @@ public static function addRightClickOsmMap() var m = marker.getLatLng(); map.panTo(new L.LatLng(m.lat, m.lng)); document.getElementById("jform_start_lat").value=m.lat.toFixed(15); - document.getElementById("jform_start_lang").value=m.lat.toFixed(15); + document.getElementById("jform_start_lang").value=m.lng.toFixed(15); }); map.on('zoomstart',function(e){ var currZoom = map.getZoom(); diff --git a/einsatzkomponente.xml b/einsatzkomponente.xml index a2156ee..9fa5b2a 100644 --- a/einsatzkomponente.xml +++ b/einsatzkomponente.xml @@ -1,20 +1,23 @@ com_einsatzkomponente - 2020-02-02 - Copyright (C) 2019 by Ralf Meyer. All rights reserved. + 2020-03-24 + Copyright (C) 2020 by Ralf Meyer. All rights reserved. GNU General Public License version 2 or later Ralf Meyer ralf.meyer@mail.de https://einsatzkomponente.de - 3.42.0 + 3.43.0 Einsatzkomponente

für das Joomla-CMS

-

Copyright (C) 2018 Ralf Meyer

+

Copyright (C) 2020 Ralf Meyer

Website: www.einsatzkomponente.de

+

Dieses Projekt jetzt unterstützen: +


Alternativ können Sie die Kontodaten per Email anfordern.

+

]]>
diff --git a/site/assets/css/einsatzkomponente.css b/site/assets/css/einsatzkomponente.css index 97dac77..7a7ea24 100644 --- a/site/assets/css/einsatzkomponente.css +++ b/site/assets/css/einsatzkomponente.css @@ -707,7 +707,6 @@ padding-right:5px; .eiko_table_ausruestung {width: 100%;} - .icon-first::before { content: "" !important; } @@ -720,6 +719,7 @@ padding-right:5px; } + .eiko_detail_image_3 { width:50%; max-width:300px; diff --git a/site/controllers/einsatzberichtform.php b/site/controllers/einsatzberichtform.php index 5b9bee3..dce0174 100644 --- a/site/controllers/einsatzberichtform.php +++ b/site/controllers/einsatzberichtform.php @@ -176,8 +176,29 @@ function publish() { return false; } + + + if ($data['id']): + $db = JFactory::getDBO(); + $query = $db->getQuery(true); + $query->update('#__eiko_einsatzberichte'); + $query->set('state = "'.$data['state'].'" '); + $query->where('id ="'.$data['id'].'"'); + $db->setQuery((string) $query); + try + { + $db->execute(); + $return = true; + } + catch (RuntimeException $e) + { + throw new Exception($e->getMessage(), 500); + } + endif; + + // Attempt to save the data. - $return = $model->save($data); + //$return = $model->save($data); // Check for errors. if ($return === false) { @@ -192,10 +213,6 @@ function publish() { } - // Check in the profile. - if ($return) { - $model->checkin($return); - } // Clear the profile id from the session. //$app->setUserState('com_einsatzkomponente.edit.einsatzbericht.id', null); diff --git a/site/views/einsatzarchiv/tmpl/main_layout_bottom.php b/site/views/einsatzarchiv/tmpl/main_layout_bottom.php index 0a610e6..620c3ab 100644 --- a/site/views/einsatzarchiv/tmpl/main_layout_bottom.php +++ b/site/views/einsatzarchiv/tmpl/main_layout_bottom.php @@ -15,7 +15,7 @@ params->get('eiko')) : ?> - Einsatzkomponente Vversion; ?> (C) 2017 by Ralf Meyer ( www.einsatzkomponente.de ) + Einsatzkomponente Vversion; ?> (C) 2020 by Ralf Meyer ( www.einsatzkomponente.de ) @@ -49,8 +49,10 @@ gmap_config->gmap_zoom_level,$this->gmap_config->start_lat,$this->gmap_config->start_lang); ?> params->get('display_home_missions','1')) :?> + params->get('display_detail_map_for_only_user','0')) :?> einsatzorte);?> + params->get('display_home_organisationen','1')) :?> organisationen);?> diff --git a/site/views/einsatzarchiv/view.feed.php b/site/views/einsatzarchiv/view.feed.php index 29f79ee..f1b644e 100644 --- a/site/views/einsatzarchiv/view.feed.php +++ b/site/views/einsatzarchiv/view.feed.php @@ -82,6 +82,10 @@ public function display($tpl = null) { $rss_item->description .= ''; + if ($item->date1 >1 and $this->params->get('display_rss_alerttime','0')) : + $rss_item->description .= ''; + endif; + if ($desc) : $rss_item->description .= ''; diff --git a/site/views/einsatzbericht/tmpl/detail_layout_1.php b/site/views/einsatzbericht/tmpl/detail_layout_1.php index 9c02bd7..91b632f 100644 --- a/site/views/einsatzbericht/tmpl/detail_layout_1.php +++ b/site/views/einsatzbericht/tmpl/detail_layout_1.php @@ -35,7 +35,7 @@ params->get('display_detail_tickerkat_icon','1') == '1') :?> tickerKat->image)) :?> - eiko_icon + @@ -46,6 +46,11 @@ item->summary; ?> + + params->get('display_detail_einsatznummer','0') == '1') :?> + (Einsatz-Nr.'); ?> einsatznummer.')'; ?> + + diff --git a/site/views/einsatzbericht/tmpl/detail_layout_2.php b/site/views/einsatzbericht/tmpl/detail_layout_2.php index 856b68e..2203380 100644 --- a/site/views/einsatzbericht/tmpl/detail_layout_2.php +++ b/site/views/einsatzbericht/tmpl/detail_layout_2.php @@ -103,7 +103,11 @@
Alarmierung am: '.date('d.m.Y', $item->date1).' um '.date('H:i', $item->date1).' Uhr
'.$desc.'

-

item->summary; ?>

+

item->summary; ?> + params->get('display_detail_einsatznummer','0') == '1') :?> + (Einsatz-Nr.'); ?> einsatznummer.')'; ?> + +

item->desc) : ?> diff --git a/site/views/einsatzbericht/tmpl/detail_layout_3.php b/site/views/einsatzbericht/tmpl/detail_layout_3.php index 452a937..5952bf9 100644 --- a/site/views/einsatzbericht/tmpl/detail_layout_3.php +++ b/site/views/einsatzbericht/tmpl/detail_layout_3.php @@ -36,6 +36,10 @@ am item->createdate)).''; ?> + params->get('display_detail_einsatznummer','0') == '1') :?> + (Einsatz-Nr.'); ?> einsatznummer.')'; ?> + +

diff --git a/site/views/einsatzbericht/tmpl/detail_layout_4.php b/site/views/einsatzbericht/tmpl/detail_layout_4.php index 7802bfa..848784f 100644 --- a/site/views/einsatzbericht/tmpl/detail_layout_4.php +++ b/site/views/einsatzbericht/tmpl/detail_layout_4.php @@ -26,6 +26,11 @@
navbar;?>
+ + params->get('display_detail_einsatznummer','0') == '1') :?> +
(Einsatz-Nr.'); ?> einsatznummer.')'; ?>
+ +