4 * Description: Plugin to add contact information to the about page (/friendica)
6 * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
7 * License: 3-clause BSD license
10 require_once('include/bbcode.php');
11 require_once('mod/proxy.php');
13 function impressum_install() {
14 register_hook('about_hook', 'addon/impressum/impressum.php', 'impressum_show');
15 register_hook('page_end', 'addon/impressum/impressum.php', 'impressum_footer');
16 logger("installed impressum plugin");
19 function impressum_uninstall() {
20 unregister_hook('about_hook', 'addon/impressum/impressum.php', 'impressum_show');
21 unregister_hook('page_end', 'addon/impressum/impressum.php', 'impressum_footer');
22 logger("uninstalled impressum plugin");
25 function impressum_module() {
27 function impressum_content() {
29 goaway($a->get_baseurl().'/friendica/');
32 function obfuscate_email ($s) {
33 $s = str_replace('@','(at)',$s);
34 $s = str_replace('.','(dot)',$s);
37 function impressum_footer($a, &$b) {
38 $text = proxy_parse_html(bbcode(get_config('impressum','footer_text'), true));
40 $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->get_baseurl().'/addon/impressum/impressum.css" media="all" />';
41 $b .= '<div class="clear"></div>';
42 $b .= '<div id="impressum_footer">'.$text.'</div>';
45 function impressum_show($a,&$b) {
46 $b .= '<h3>'.t('Impressum').'</h3>';
47 $owner = get_config('impressum', 'owner');
48 $owner_profile = get_config('impressum','ownerprofile');
49 $postal = proxy_parse_html(bbcode(get_config('impressum', 'postal'), true));
50 $notes = proxy_parse_html(bbcode(get_config('impressum', 'notes'), true));
51 $email = obfuscate_email( get_config('impressum','email') );
53 if (strlen($owner_profile)) {
54 $tmp = '<a href="'.$owner_profile.'">'.$owner.'</a>';
59 $b .= '<p><strong>'.t('Site Owner').'</strong>: '. $tmp .'<br /><strong>'.t('Email Address').'</strong>: '.$email.'</p>';
61 $b .= '<p><strong>'.t('Site Owner').'</strong>: '. $tmp .'</p>';
63 if (strlen($postal)) {
64 $b .= '<p><strong>'.t('Postal Address').'</strong><br />'. $postal .'</p>';
67 $b .= '<p>'.$notes.'</p>';
70 $b .= '<p>'.t('The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon.').'</p>';
74 function impressum_plugin_admin_post (&$a) {
75 $owner = ((x($_POST, 'owner')) ? notags(trim($_POST['owner'])) : '');
76 $ownerprofile = ((x($_POST, 'ownerprofile')) ? notags(trim($_POST['ownerprofile'])) : '');
77 $postal = ((x($_POST, 'postal')) ? (trim($_POST['postal'])) : '');
78 $notes = ((x($_POST, 'notes')) ? (trim($_POST['notes'])) : '');
79 $email = ((x($_POST, 'email')) ? notags(trim($_POST['email'])) : '');
80 $footer_text = ((x($_POST, 'footer_text')) ? (trim($_POST['footer_text'])) : '');
81 set_config('impressum','owner',strip_tags($owner));
82 set_config('impressum','ownerprofile',strip_tags($ownerprofile));
83 set_config('impressum','postal',strip_tags($postal));
84 set_config('impressum','email',strip_tags($email));
85 set_config('impressum','notes',strip_tags($notes));
86 set_config('impressum','footer_text',strip_tags($footer_text));
87 info( t('Settings updated.'). EOL );
89 function impressum_plugin_admin (&$a, &$o) {
90 $t = get_markup_template( "admin.tpl", "addon/impressum/" );
91 $o = replace_macros($t, array(
92 '$submit' => t('Save Settings'),
93 '$owner' => array('owner', t('Site Owner'), get_config('impressum','owner'), t('The page operators name.')),
94 '$ownerprofile' => array('ownerprofile', t('Site Owners Profile'), get_config('impressum','ownerprofile'), t('Profile address of the operator.')),
95 '$postal' => array('postal', t('Postal Address'), get_config('impressum','postal'), t('How to contact the operator via snail mail. You can use BBCode here.')),
96 '$notes' => array('notes', t('Notes'), get_config('impressum','notes'), t('Additional notes that are displayed beneath the contact information. You can use BBCode here.')),
97 '$email' => array('email', t('Email Address'), get_config('impressum','email'), t('How to contact the operator via email. (will be displayed obfuscated)')),
98 '$footer_text' => array('footer_text', t('Footer note'), get_config('impressum','footer_text'), t('Text for the footer. You can use BBCode here.')),