Merge branch 'develop' of https://github.com/friendica/friendica-addons into develop
[friendica-addons.git/.git] / gnot / gnot.php
index bbdf9d8..15fb4da 100644 (file)
@@ -8,93 +8,67 @@
  *
  */
 
-use Friendica\Core\PConfig;
-
-function gnot_install() {
-
-       register_hook('plugin_settings', 'addon/gnot/gnot.php', 'gnot_settings');
-       register_hook('plugin_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
-       register_hook('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
-
-       logger("installed gnot");
+use Friendica\App;
+use Friendica\Core\Hook;
+use Friendica\Core\Logger;
+use Friendica\Core\Renderer;
+use Friendica\DI;
+use Friendica\Model\Notification;
+
+function gnot_install()
+{
+       Hook::register('addon_settings', 'addon/gnot/gnot.php', 'gnot_settings');
+       Hook::register('addon_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
+       Hook::register('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
+
+       Logger::notice("installed gnot");
 }
 
-
-function gnot_uninstall() {
-
-       unregister_hook('plugin_settings', 'addon/gnot/gnot.php', 'gnot_settings');
-       unregister_hook('plugin_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
-       unregister_hook('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
-
-
-       logger("removed gnot");
-}
-
-
-
 /**
- *
  * 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 gnot_settings_post($a,$post) {
-       if(! local_user() || (! x($_POST,'gnot-submit')))
+function gnot_settings_post($post) {
+       if(! DI::userSession()->getLocalUserId() || empty($_POST['gnot-submit']))
                return;
 
-       PConfig::set(local_user(),'gnot','enable',intval($_POST['gnot']));
-       info( t('Gnot settings updated.') . EOL);
+       DI::pConfig()->set(DI::userSession()->getLocalUserId(),'gnot','enable',intval($_POST['gnot']));
 }
 
-
 /**
- *
- * Called from the Plugin Setting form. 
+ * Called from the Addon Setting form. 
  * Add our own settings info to the page.
- *
  */
-
-
-
-function gnot_settings(&$a,&$s) {
-
-       if(! local_user())
+function gnot_settings(array &$data)
+{
+       if (!DI::userSession()->getLocalUserId()) {
                return;
+       }
 
-       /* Add our stylesheet to the page so we can make our settings look nice */
-
-       $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/gnot/gnot.css' . '" media="all" />' . "\r\n";
-
-       /* Get the current state of our config variable */
+       $gnot = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'gnot', 'enable'));
 
-       $gnot = intval(PConfig::get(local_user(),'gnot','enable'));
-
-       $gnot_checked = (($gnot) ? ' checked="checked" ' : '' );
-       
-       /* Add some HTML to the existing form */
-
-       $s .= '<div class="settings-block">';
-       $s .= '<h3>' . t('Gnot Settings') . '</h3>';
-       $s .= '<div id="gnot-wrapper">';
-       $s .= '<div id="gnot-desc">' . t("Allows threading of email comment notifications on Gmail and anonymising the subject line.") . '</div>';
-       $s .= '<label id="gnot-label" for="gnot">' . t('Enable this plugin/addon?') . '</label>';
-       $s .= '<input id="gnot-input" type="checkbox" name="gnot" value="1"'.  $gnot_checked . '/>';
-       $s .= '</div><div class="clear"></div>';
-
-       /* provide a submit button */
-
-       $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="gnot-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
+       $t    = Renderer::getMarkupTemplate('settings.tpl', 'addon/gnot/');
+       $html = Renderer::replaceMacros($t, [
+               '$text'    => DI::l10n()->t("Allows threading of email comment notifications on Gmail and anonymising the subject line."),
+               '$enabled' => ['gnot', DI::l10n()->t('Enable this addon?'), $gnot],
+       ]);
 
+       $data = [
+               'addon' => 'gnot',
+               'title' => DI::l10n()->t('Gnot Settings'),
+               'html'  => $html,
+       ];
 }
 
-
-function gnot_enotify_mail(&$a,&$b) {
-       if((! $b['uid']) || (! intval(PConfig::get($b['uid'], 'gnot','enable'))))
+function gnot_enotify_mail(array &$b)
+{
+       if ((!$b['uid']) || (! intval(DI::pConfig()->get($b['uid'], 'gnot','enable')))) {
                return;
-       if($b['type'] == NOTIFY_COMMENT)
-               $b['subject'] = sprintf( t('[Friendica:Notify] Comment to conversation #%d'), $b['parent']);
-}
+       }
 
+       if ($b['type'] == Notification\Type::COMMENT) {
+               $b['subject'] = DI::l10n()->t('[Friendica:Notify] Comment to conversation #%d', $b['parent']);
+       }
+}