* * */ use Friendica\Core\Addon; use Friendica\Core\PConfig; function gnot_install() { Addon::registerHook('plugin_settings', 'addon/gnot/gnot.php', 'gnot_settings'); Addon::registerHook('plugin_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post'); Addon::registerHook('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail'); logger("installed gnot"); } function gnot_uninstall() { Addon::unregisterHook('plugin_settings', 'addon/gnot/gnot.php', 'gnot_settings'); Addon::unregisterHook('plugin_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post'); Addon::unregisterHook('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'))) return; PConfig::set(local_user(),'gnot','enable',intval($_POST['gnot'])); info( t('Gnot settings updated.') . EOL); } /** * * Called from the Plugin Setting form. * Add our own settings info to the page. * */ function gnot_settings(&$a,&$s) { if(! local_user()) return; /* Add our stylesheet to the page so we can make our settings look nice */ $a->page['htmlhead'] .= '' . "\r\n"; /* Get the current state of our config variable */ $gnot = intval(PConfig::get(local_user(),'gnot','enable')); $gnot_checked = (($gnot) ? ' checked="checked" ' : '' ); /* Add some HTML to the existing form */ $s .= '
'; $s .= '

' . t('Gnot Settings') . '

'; $s .= '
'; $s .= '
' . t("Allows threading of email comment notifications on Gmail and anonymising the subject line.") . '
'; $s .= ''; $s .= ''; $s .= '
'; /* provide a submit button */ $s .= '
'; } function gnot_enotify_mail(&$a,&$b) { if((! $b['uid']) || (! intval(PConfig::get($b['uid'], 'gnot','enable')))) return; if($b['type'] == NOTIFY_COMMENT) $b['subject'] = sprintf( t('[Friendica:Notify] Comment to conversation #%d'), $b['parent']); }