]> git.mxchange.org Git - friendica-addons.git/blobdiff - qcomment/qcomment.php
Changes:
[friendica-addons.git] / qcomment / qcomment.php
index 7c5e03588d8551378685fc5164a3ef4c91bbb32c..1b8bfcbfd0674c7cf7327edff2a7593090c7b6c6 100644 (file)
  * them to open the comment window fully and insert the qcomment. Then "Submit" will submit it.
  *
  */
+
+use Friendica\App;
 use Friendica\Core\Hook;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
+use Friendica\Core\Renderer;
+use Friendica\DI;
 use Friendica\Util\XML;
 
-function qcomment_install() {
-       Hook::register('addon_settings', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings');
-       Hook::register('addon_settings_post', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings_post');
-
+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');
 }
 
-function qcomment_uninstall() {
-       Hook::unregister('addon_settings', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings');
-       Hook::unregister('addon_settings_post', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings_post');
-
+function qcomment_footer(string &$body)
+{
+       DI::page()->registerFooterScript('addon/qcomment/qcomment.js');
 }
 
-function qcomment_addon_settings(&$a, &$s)
+function qcomment_addon_settings(array &$data)
 {
-       if (! local_user()) {
+       if (!DI::userSession()->getLocalUserId()) {
                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->getBaseURL() . '/addon/qcomment/qcomment.css' . '" media="all" />' . "\r\n";
-
-       $words = PConfig::get(local_user(), 'qcomment', 'words', L10n::t(':-)') . "\n" . L10n::t(':-(') . "\n" .  L10n::t('lol'));
-
-       $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(XML::unescape($words)) . '</textarea>';
-       $s .= '</div><div class="clear"></div>';
+       $words = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'qcomment', 'words', DI::l10n()->t(':-)') . "\n" . DI::l10n()->t(':-(') . "\n" . DI::l10n()->t('lol'));
 
-       $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>';
+       $t    = Renderer::getMarkupTemplate('settings.tpl', 'addon/qcomment/');
+       $html = Renderer::replaceMacros($t, [
+               '$description' => DI::l10n()->t('Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.'),
+               '$words'       => ['qcomment-words', DI::l10n()->t('Enter quick comments, one per line'), $words, null, ' rows="10"'],
+       ]);
 
-       return;
+       $data = [
+               'addon' => 'qcomment',
+               'title' => DI::l10n()->t('Quick Comment Settings'),
+               'html'  => $html,
+       ];
 }
 
-function qcomment_addon_settings_post(&$a, &$b)
+function qcomment_addon_settings_post(array &$b)
 {
-       if (! local_user()) {
+       if (!DI::userSession()->getLocalUserId()) {
                return;
        }
 
-       if ($_POST['qcomment-submit']) {
-               PConfig::set(local_user(), 'qcomment', 'words', XML::escape($_POST['qcomment-words']));
-               info(L10n::t('Quick Comment settings saved.') . EOL);
+       if (isset($_POST['qcomment-words'])) {
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'qcomment', 'words', XML::escape($_POST['qcomment-words']));
        }
 }