mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-10-10 00:43:00 +00:00
Merge branch '3.6-rc'
This commit is contained in:
commit
39dd3dffe0
733 changed files with 10943 additions and 8237 deletions
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2015-08-31 10:22+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 06:08+0000\n"
|
||||
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -1,64 +1,58 @@
|
|||
<?php
|
||||
|
||||
|
||||
/**
|
||||
* Name: Quick Comment
|
||||
* Description: Two click comments
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*
|
||||
*
|
||||
* Provides a set of text "snippets" which can be inserted into a comment window by clicking on them.
|
||||
* First enable the addon in the system admin panel.
|
||||
* Then each person can tailor their choice of words in Settings->Plugin Settings in the Qcomment
|
||||
* 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
|
||||
* pane. Initially no qcomments are provided, but on viewing the settings page, a default set of
|
||||
* of words is suggested. These can be accepted (click Submit) or edited first. Each text line represents
|
||||
* a different qcomment.
|
||||
* of words is suggested. These can be accepted (click Submit) or edited first. Each text line represents
|
||||
* a different qcomment.
|
||||
* 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.
|
||||
* Wave the mouse around near the comment input box and the qcomments will show up. Click on any of
|
||||
* Wave the mouse around near the comment input box and the qcomments will show up. Click on any of
|
||||
* them to open the comment window fully and insert the qcomment. Then "Submit" will submit it.
|
||||
*
|
||||
*/
|
||||
use Friendica\Core\Addon;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Core\PConfig;
|
||||
|
||||
function qcomment_install() {
|
||||
register_hook('plugin_settings', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings');
|
||||
register_hook('plugin_settings_post', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings_post');
|
||||
Addon::registerHook('addon_settings', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings');
|
||||
Addon::registerHook('addon_settings_post', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings_post');
|
||||
|
||||
}
|
||||
|
||||
|
||||
function qcomment_uninstall() {
|
||||
unregister_hook('plugin_settings', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings');
|
||||
unregister_hook('plugin_settings_post', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings_post');
|
||||
Addon::unregisterHook('addon_settings', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings');
|
||||
Addon::unregisterHook('addon_settings_post', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings_post');
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function qcomment_addon_settings(&$a,&$s) {
|
||||
|
||||
if(! local_user())
|
||||
function qcomment_addon_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/qcomment/qcomment.css' . '" media="all" />' . "\r\n";
|
||||
|
||||
$words = get_pconfig(local_user(),'qcomment','words');
|
||||
if($words === false)
|
||||
$words = t(':-)') . "\n" . t(':-(') . "\n" . t('lol');
|
||||
$words = PConfig::get(local_user(), 'qcomment', 'words', L10n::t(':-)') . "\n" . L10n::t(':-(') . "\n" . L10n::t('lol'));
|
||||
|
||||
$s .= '<div class="settings-block">';
|
||||
$s .= '<h3>' . t('Quick Comment Settings') . '</h3>';
|
||||
$s .= '<div id="qcomment-wrapper">';
|
||||
$s .= '<div id="qcomment-desc">' . t("Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.") . '</div>';
|
||||
$s .= '<label id="qcomment-label" for="qcomment-words">' . t('Enter quick comments, one per line') . ' </label>';
|
||||
$s .= '<textarea id="qcomment-words" type="text" name="qcomment-words" >' . htmlspecialchars(unxmlify($words)) . '</textarea>';
|
||||
$s .= '</div><div class="clear"></div>';
|
||||
$s .= '<div class="settings-block">';
|
||||
$s .= '<h3>' . L10n::t('Quick Comment Settings') . '</h3>';
|
||||
$s .= '<div id="qcomment-wrapper">';
|
||||
$s .= '<div id="qcomment-desc">' . L10n::t("Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.") . '</div>';
|
||||
$s .= '<label id="qcomment-label" for="qcomment-words">' . L10n::t('Enter quick comments, one per line') . ' </label>';
|
||||
$s .= '<textarea id="qcomment-words" type="text" name="qcomment-words" >' . htmlspecialchars(unxmlify($words)) . '</textarea>';
|
||||
$s .= '</div><div class="clear"></div>';
|
||||
|
||||
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="qcomment-submit" name="qcomment-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
|
||||
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="qcomment-submit" name="qcomment-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>';
|
||||
$s .= '</div>';
|
||||
|
||||
return;
|
||||
|
@ -71,8 +65,7 @@ function qcomment_addon_settings_post(&$a,&$b) {
|
|||
return;
|
||||
|
||||
if($_POST['qcomment-submit']) {
|
||||
set_pconfig(local_user(),'qcomment','words',xmlify($_POST['qcomment-words']));
|
||||
info( t('Quick Comment settings saved.') . EOL);
|
||||
PConfig::set(local_user(),'qcomment','words',xmlify($_POST['qcomment-words']));
|
||||
info(L10n::t('Quick Comment settings saved.') . EOL);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue