]> git.mxchange.org Git - friendica-addons.git/blobdiff - planets/planets.php
Changes:
[friendica-addons.git] / planets / planets.php
index 35a677ae97595d480f4921dbd2d651989b1185bf..2937c0360ed3c32596638b66665e0126df576060 100644 (file)
@@ -38,7 +38,7 @@ function planets_install()
  *      - A status post by a profile owner
  *      - The profile owner must have allowed our addon
  */
-function planets_post_hook(App $a, &$item)
+function planets_post_hook(&$item)
 {
        Logger::notice('planets invoked');
 
@@ -81,39 +81,29 @@ function planets_post_hook(App $a, &$item)
        return;
 }
 
-
-
-
 /**
- *
  * Callback from the settings post function.
  * $post contains the $_POST array.
  * We will make sure we've got a valid user account
  * and if so set our configuration setting for this person.
- *
  */
-
-function planets_settings_post(App $a, $post)
+function planets_settings_post(array $post)
 {
        if (!DI::userSession()->getLocalUserId()) {
                return;
        }
-       if ($_POST['planets-submit']) {
-               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'planets', 'enable' ,intval($_POST['planets']));
+       if ($post['planets-submit']) {
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'planets', 'enable' ,intval($post['planets']));
        }
 }
 
 
 /**
- *
  * Called from the Addon Setting form.
  * Add our own settings info to the page.
  *
  */
-
-
-
-function planets_settings(App &$a, array &$data)
+function planets_settings(array &$data)
 {
        if(!DI::userSession()->getLocalUserId()) {
                return;