100 lines
2.7 KiB
PHP
100 lines
2.7 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Name: Gnot
|
||
|
* Description: Thread email comment notifications on Gmail and anonymise them
|
||
|
* Version: 1.0
|
||
|
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
|
||
|
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");
|
||
|
}
|
||
|
|
||
|
|
||
|
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')))
|
||
|
return;
|
||
|
|
||
|
set_pconfig(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'] .= '<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(get_pconfig(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('Submit') . '" /></div></div>';
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
function gnot_enotify_mail(&$a,&$b) {
|
||
|
if((! $b['uid']) || (! intval(get_pconfig($b['uid'], 'gnot','enable'))))
|
||
|
return;
|
||
|
if($b['type'] == NOTIFY_COMMENT)
|
||
|
$b['subject'] = sprintf( t('[Friendica:Notify] Comment to conversation #%d'), $b['parent']);
|
||
|
}
|
||
|
|