X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=impressum%2Fimpressum.php;h=235c4147785f5b5628e0c59634c040fcae049d9e;hb=b496f024363bbb1e2227b7fac9b5cd3959c73439;hp=305dd9a9452b2ce7df11acef10f1d6644cb31c0a;hpb=3da6f1471cc8482e626fa3ad4530ee7cd858f813;p=friendica-addons.git diff --git a/impressum/impressum.php b/impressum/impressum.php index 305dd9a9..235c4147 100755 --- a/impressum/impressum.php +++ b/impressum/impressum.php @@ -2,12 +2,13 @@ /** * Name: Impressum * Description: Plugin to add contact information to the about page (/friendica) - * Version: 1.2 - * Author: Tobias Diekershoff + * Version: 1.3 + * Author: Tobias Diekershoff * License: 3-clause BSD license */ require_once('include/bbcode.php'); +require_once('mod/proxy.php'); function impressum_install() { register_hook('about_hook', 'addon/impressum/impressum.php', 'impressum_show'); @@ -20,13 +21,21 @@ function impressum_uninstall() { unregister_hook('page_end', 'addon/impressum/impressum.php', 'impressum_footer'); logger("uninstalled impressum plugin"); } + +function impressum_module() { +} +function impressum_content() { + $a = get_app(); + goaway($a->get_baseurl().'/friendica/'); +} + function obfuscate_email ($s) { $s = str_replace('@','(at)',$s); $s = str_replace('.','(dot)',$s); return $s; } function impressum_footer($a, &$b) { - $text = bbcode(get_config('impressum','footer_text'), true); + $text = proxy_parse_html(bbcode(get_config('impressum','footer_text'), true)); if (! $text == '') { $a->page['htmlhead'] .= ''; $b .= '
'; @@ -37,8 +46,8 @@ function impressum_show($a,&$b) { $b .= '

'.t('Impressum').'

'; $owner = get_config('impressum', 'owner'); $owner_profile = get_config('impressum','ownerprofile'); - $postal = bbcode(get_config('impressum', 'postal'), true); - $notes = bbcode(get_config('impressum', 'notes'), true); + $postal = proxy_parse_html(bbcode(get_config('impressum', 'postal'), true)); + $notes = proxy_parse_html(bbcode(get_config('impressum', 'notes'), true)); $email = obfuscate_email( get_config('impressum','email') ); if (strlen($owner)) { if (strlen($owner_profile)) { @@ -79,15 +88,8 @@ function impressum_plugin_admin_post (&$a) { } function impressum_plugin_admin (&$a, &$o) { $t = get_markup_template( "admin.tpl", "addon/impressum/" ); - - $includes = array( - '$field_input' => 'field_input.tpl', - '$field_textarea' => 'field_textarea.tpl', - ); - $includes = set_template_includes($a->theme['template_engine'], $includes); - - $o = replace_macros($t, $includes + array( - '$submit' => t('Submit'), + $o = replace_macros($t, array( + '$submit' => t('Save Settings'), '$owner' => array('owner', t('Site Owner'), get_config('impressum','owner'), t('The page operators name.')), '$ownerprofile' => array('ownerprofile', t('Site Owners Profile'), get_config('impressum','ownerprofile'), t('Profile address of the operator.')), '$postal' => array('postal', t('Postal Address'), get_config('impressum','postal'), t('How to contact the operator via snail mail. You can use BBCode here.')),