mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 19:11:09 +00:00
779b38ec09
- Add separate template files to several addons - Remove superfluous addon settings CSS files
80 lines
1.9 KiB
PHP
80 lines
1.9 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>
|
|
*
|
|
*
|
|
*/
|
|
|
|
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");
|
|
}
|
|
|
|
/**
|
|
*
|
|
* 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() || empty($_POST['gnot-submit']))
|
|
return;
|
|
|
|
DI::pConfig()->set(local_user(),'gnot','enable',intval($_POST['gnot']));
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
* Called from the Addon Setting form.
|
|
* Add our own settings info to the page.
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
function gnot_settings(App &$a, array &$data)
|
|
{
|
|
if (!local_user()) {
|
|
return;
|
|
}
|
|
|
|
$gnot = intval(DI::pConfig()->get(local_user(), 'gnot', 'enable'));
|
|
|
|
$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(DI::pConfig()->get($b['uid'], 'gnot','enable'))))
|
|
return;
|
|
if($b['type'] == Notification\Type::COMMENT)
|
|
$b['subject'] = DI::l10n()->t('[Friendica:Notify] Comment to conversation #%d', $b['parent']);
|
|
}
|