2012-02-16 02:15:10 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Quick Comment
|
|
|
|
* Description: Two click comments
|
|
|
|
* Version: 1.0
|
|
|
|
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
2018-01-22 19:03:11 +00:00
|
|
|
*
|
2012-02-17 04:00:35 +00:00
|
|
|
* Provides a set of text "snippets" which can be inserted into a comment window by clicking on them.
|
2018-01-22 19:03:11 +00:00
|
|
|
* First enable the addon in the system admin panel.
|
|
|
|
* Then each person can tailor their choice of words in Settings->Addon Settings in the Qcomment
|
2012-02-17 04:00:35 +00:00
|
|
|
* pane. Initially no qcomments are provided, but on viewing the settings page, a default set of
|
2018-01-22 19:03:11 +00:00
|
|
|
* of words is suggested. These can be accepted (click Submit) or edited first. Each text line represents
|
|
|
|
* a different qcomment.
|
2012-02-17 04:00:35 +00:00
|
|
|
* Many themes will hide the qcomments above or immediately adjacent to the comment input box until
|
|
|
|
* you wish to use them. On some themes they may be visible.
|
2018-01-22 19:03:11 +00:00
|
|
|
* Wave the mouse around near the comment input box and the qcomments will show up. Click on any of
|
2012-02-17 04:00:35 +00:00
|
|
|
* them to open the comment window fully and insert the qcomment. Then "Submit" will submit it.
|
|
|
|
*
|
2012-02-16 02:15:10 +00:00
|
|
|
*/
|
2018-12-26 07:28:16 +00:00
|
|
|
use Friendica\Core\Hook;
|
2019-12-30 02:55:10 +00:00
|
|
|
use Friendica\DI;
|
2018-11-05 12:47:04 +00:00
|
|
|
use Friendica\Util\XML;
|
2017-11-06 23:55:24 +00:00
|
|
|
|
2020-09-09 20:52:43 +00:00
|
|
|
function qcomment_install()
|
|
|
|
{
|
|
|
|
Hook::register('addon_settings' , __FILE__, 'qcomment_addon_settings');
|
|
|
|
Hook::register('addon_settings_post', __FILE__, 'qcomment_addon_settings_post');
|
|
|
|
Hook::register('footer' , __FILE__, 'qcomment_footer');
|
|
|
|
}
|
2012-02-16 02:15:10 +00:00
|
|
|
|
2020-09-09 20:52:43 +00:00
|
|
|
function qcomment_footer(\Friendica\App $a, &$b)
|
|
|
|
{
|
|
|
|
DI::page()->registerFooterScript(__DIR__ . '/qcomment.js');
|
2012-02-16 02:15:10 +00:00
|
|
|
}
|
|
|
|
|
2017-12-06 21:27:55 +00:00
|
|
|
function qcomment_addon_settings(&$a, &$s)
|
|
|
|
{
|
|
|
|
if (! local_user()) {
|
2012-02-16 02:15:10 +00:00
|
|
|
return;
|
2017-12-06 21:27:55 +00:00
|
|
|
}
|
2012-02-16 02:15:10 +00:00
|
|
|
|
2020-01-18 19:52:33 +00:00
|
|
|
$words = DI::pConfig()->get(local_user(), 'qcomment', 'words', DI::l10n()->t(':-)') . "\n" . DI::l10n()->t(':-(') . "\n" . DI::l10n()->t('lol'));
|
2012-02-16 02:15:10 +00:00
|
|
|
|
2020-09-09 20:52:43 +00:00
|
|
|
$t = \Friendica\Core\Renderer::getMarkupTemplate('settings.tpl', 'addon/qcomment/');
|
|
|
|
$s .= \Friendica\Core\Renderer::replaceMacros($t, [
|
|
|
|
'$postpost' => isset($_POST['qcomment-words']),
|
|
|
|
'$header' => DI::l10n()->t('Quick Comment Settings'),
|
|
|
|
'$description' => DI::l10n()->t("Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."),
|
|
|
|
'$save' => DI::l10n()->t('Save Settings'),
|
|
|
|
'$words' => ['qcomment-words', DI::l10n()->t('Enter quick comments, one per line'), $words, null, ' rows="10"'],
|
|
|
|
]);
|
2012-02-16 02:15:10 +00:00
|
|
|
}
|
|
|
|
|
2018-11-03 17:16:21 +00:00
|
|
|
function qcomment_addon_settings_post(&$a, &$b)
|
|
|
|
{
|
|
|
|
if (! local_user()) {
|
2012-02-16 02:15:10 +00:00
|
|
|
return;
|
2018-11-03 17:16:21 +00:00
|
|
|
}
|
2012-02-16 02:15:10 +00:00
|
|
|
|
2020-09-09 20:52:43 +00:00
|
|
|
if (isset($_POST['qcomment-words'])) {
|
2020-01-18 15:54:49 +00:00
|
|
|
DI::pConfig()->set(local_user(), 'qcomment', 'words', XML::escape($_POST['qcomment-words']));
|
2012-02-16 02:15:10 +00:00
|
|
|
}
|
|
|
|
}
|