X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=showmore%2Fshowmore.php;h=89cec83d4d6dc75590c3eb356ef8eadeed12762c;hb=1f2f820226474c7ca71c8dcaba82385326d0c80d;hp=1f40b027be3b7da947e3905e8a9a817ffd176c7a;hpb=fc3329e956d32e5c33190c9ec87814b9804709d0;p=friendica-addons.git diff --git a/showmore/showmore.php b/showmore/showmore.php old mode 100755 new mode 100644 index 1f40b027..89cec83d --- a/showmore/showmore.php +++ b/showmore/showmore.php @@ -7,17 +7,20 @@ * based upon NSFW from Mike Macgirvin * */ +use Friendica\Core\Addon; +use Friendica\Core\L10n; +use Friendica\Core\PConfig; function showmore_install() { - register_hook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body'); - register_hook('plugin_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings'); - register_hook('plugin_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post'); + Addon::registerHook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body'); + Addon::registerHook('addon_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings'); + Addon::registerHook('addon_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post'); } function showmore_uninstall() { - unregister_hook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body'); - unregister_hook('plugin_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings'); - unregister_hook('plugin_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post'); + Addon::unregisterHook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body'); + Addon::unregisterHook('addon_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings'); + Addon::unregisterHook('addon_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post'); } function showmore_addon_settings(&$a,&$s) { @@ -29,24 +32,30 @@ function showmore_addon_settings(&$a,&$s) { $a->page['htmlhead'] .= ''."\r\n"; - $enable_checked = (intval(get_pconfig(local_user(),'showmore','disable')) ? '' : ' checked="checked"'); - $chars = get_pconfig(local_user(),'showmore','chars'); + $enable_checked = (intval(PConfig::get(local_user(),'showmore','disable')) ? '' : ' checked="checked"'); + $chars = PConfig::get(local_user(),'showmore','chars'); if(!$chars) $chars = '1100'; - $s .= '
'; - $s .= '

' . t('"Show more" Settings').'

'; + $s .= ''; + $s .= '

' . L10n::t('"Show more" Settings').'

'; + $s .= '
'; + $s .= ''; return; @@ -58,11 +67,11 @@ function showmore_addon_settings_post(&$a,&$b) { return; if($_POST['showmore-submit']) { - set_pconfig(local_user(),'showmore','chars',trim($_POST['showmore-chars'])); + PConfig::set(local_user(),'showmore','chars',trim($_POST['showmore-chars'])); $enable = ((x($_POST,'showmore-enable')) ? intval($_POST['showmore-enable']) : 0); $disable = 1-$enable; - set_pconfig(local_user(),'showmore','disable', $disable); - info( t('Show More Settings saved.') . EOL); + PConfig::set(local_user(),'showmore','disable', $disable); + info(L10n::t('Show More Settings saved.') . EOL); } } @@ -101,10 +110,10 @@ function get_body_length($body) { function showmore_prepare_body(&$a,&$b) { $words = null; - if(get_pconfig(local_user(),'showmore','disable')) + if(PConfig::get(local_user(),'showmore','disable')) return; - $chars = (int)get_pconfig(local_user(),'showmore','chars'); + $chars = (int)PConfig::get(local_user(),'showmore','chars'); if(!$chars) $chars = 1100; @@ -115,9 +124,9 @@ function showmore_prepare_body(&$a,&$b) { if($found) { $rnd = random_string(8); - $b['html'] = ''.$shortened." ". - ''.sprintf(t('show more')).''. - ''; + $b['html'] = ''.$shortened." ". + ''.L10n::t('show more').''. + ''; } } @@ -148,7 +157,7 @@ function showmore_cutitem($text, $limit) { @$doc->loadHTML($doctype."".$text.""); $text = $doc->saveHTML(); - $text = str_replace(array("", "", $doctype), array("", "", ""), $text); + $text = str_replace(["", "", $doctype], ["", "", ""], $text); return($text); }