]> git.mxchange.org Git - friendica-addons.git/blobdiff - googlemaps/googlemaps.php
Merge pull request #930 from annando/markdown-encoding
[friendica-addons.git] / googlemaps / googlemaps.php
index 7cccb65024168970a57a91800ce98be01ddea74c..09a566e8b46b2071027cc85fe0cd678ac783b459 100644 (file)
@@ -6,20 +6,19 @@
  * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
  *
  */
-use Friendica\Core\Addon;
-use Friendica\Core\Cache;
-use Friendica\Core\Logger
+use Friendica\Core\Hook;
+use Friendica\Core\Logger;
 
 function googlemaps_install()
 {
-       Addon::registerHook('render_location', 'addon/googlemaps/googlemaps.php', 'googlemaps_location');
+       Hook::register('render_location', 'addon/googlemaps/googlemaps.php', 'googlemaps_location');
 
        Logger::log("installed googlemaps");
 }
 
 function googlemaps_uninstall()
 {
-       Addon::unregisterHook('render_location', 'addon/googlemaps/googlemaps.php', 'googlemaps_location');
+       Hook::unregister('render_location', 'addon/googlemaps/googlemaps.php', 'googlemaps_location');
 
        Logger::log("removed googlemaps");
 }