]> git.mxchange.org Git - friendica-addons.git/blob - impressum/impressum.php
Merge pull request #142 from annando/master
[friendica-addons.git] / impressum / impressum.php
1 <?php
2 /**
3  * Name: Impressum
4  * Description: Plugin to add contact information to the about page (/friendica)
5  * Version: 1.3
6  * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
7  * License: 3-clause BSD license
8  */
9
10 require_once('include/bbcode.php');
11
12 function impressum_install() {
13     register_hook('about_hook', 'addon/impressum/impressum.php', 'impressum_show');
14     register_hook('page_end', 'addon/impressum/impressum.php', 'impressum_footer');
15     logger("installed impressum plugin");
16 }
17
18 function impressum_uninstall() {
19     unregister_hook('about_hook', 'addon/impressum/impressum.php', 'impressum_show');
20     unregister_hook('page_end', 'addon/impressum/impressum.php', 'impressum_footer');
21     logger("uninstalled impressum plugin");
22 }
23
24 function impressum_module() {
25 }
26 function impressum_content() {
27     $a = get_app();
28     goaway($a->get_baseurl().'/friendica/');
29 }
30
31 function obfuscate_email ($s) {
32     $s = str_replace('@','(at)',$s);
33     $s = str_replace('.','(dot)',$s);
34     return $s;
35 }
36 function impressum_footer($a, &$b) {
37     $text = bbcode(get_config('impressum','footer_text'), true);
38     if (! $text == '') {
39         $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->get_baseurl().'/addon/impressum/impressum.css" media="all" />';
40         $b .= '<div class="clear"></div>';
41         $b .= '<div id="impressum_footer">'.$text.'</div>';
42     }
43 }
44 function impressum_show($a,&$b) {
45     $b .= '<h3>'.t('Impressum').'</h3>';
46     $owner = get_config('impressum', 'owner');
47     $owner_profile = get_config('impressum','ownerprofile');
48     $postal = bbcode(get_config('impressum', 'postal'), true);
49     $notes = bbcode(get_config('impressum', 'notes'), true);
50     $email = obfuscate_email( get_config('impressum','email') );
51     if (strlen($owner)) {
52         if (strlen($owner_profile)) {
53             $tmp = '<a href="'.$owner_profile.'">'.$owner.'</a>';
54         } else {
55             $tmp = $owner;
56         }
57         if (strlen($email)) {
58             $b .= '<p><strong>'.t('Site Owner').'</strong>: '. $tmp .'<br /><strong>'.t('Email Address').'</strong>: '.$email.'</p>';
59         } else {
60             $b .= '<p><strong>'.t('Site Owner').'</strong>: '. $tmp .'</p>';
61         }
62         if (strlen($postal)) {
63             $b .= '<p><strong>'.t('Postal Address').'</strong><br />'. $postal .'</p>';
64         }
65         if (strlen($notes)) {
66             $b .= '<p>'.$notes.'</p>';
67         }
68     } else {
69         $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>';
70     }
71 }
72
73 function impressum_plugin_admin_post (&$a) {
74     $owner = ((x($_POST, 'owner')) ? notags(trim($_POST['owner'])) : '');
75     $ownerprofile = ((x($_POST, 'ownerprofile')) ? notags(trim($_POST['ownerprofile'])) : '');
76     $postal = ((x($_POST, 'postal')) ? (trim($_POST['postal'])) : '');
77     $notes = ((x($_POST, 'notes')) ? (trim($_POST['notes'])) : '');
78     $email = ((x($_POST, 'email')) ? notags(trim($_POST['email'])) : '');
79     $footer_text = ((x($_POST, 'footer_text')) ? (trim($_POST['footer_text'])) : '');
80     set_config('impressum','owner',strip_tags($owner));
81     set_config('impressum','ownerprofile',strip_tags($ownerprofile));
82     set_config('impressum','postal',strip_tags($postal));
83     set_config('impressum','email',strip_tags($email));
84     set_config('impressum','notes',strip_tags($notes));
85     set_config('impressum','footer_text',strip_tags($footer_text));
86     info( t('Settings updated.'). EOL );
87 }
88 function impressum_plugin_admin (&$a, &$o) {
89     $t = get_markup_template( "admin.tpl", "addon/impressum/" );
90     $o = replace_macros($t, array(
91         '$submit' => t('Submit'),
92         '$owner' => array('owner', t('Site Owner'), get_config('impressum','owner'), t('The page operators name.')),
93         '$ownerprofile' => array('ownerprofile', t('Site Owners Profile'), get_config('impressum','ownerprofile'), t('Profile address of the operator.')),
94         '$postal' => array('postal', t('Postal Address'), get_config('impressum','postal'), t('How to contact the operator via snail mail. You can use BBCode here.')),
95         '$notes' => array('notes', t('Notes'), get_config('impressum','notes'), t('Additional notes that are displayed beneath the contact information. You can use BBCode here.')),
96         '$email' => array('email', t('Email Address'), get_config('impressum','email'), t('How to contact the operator via email. (will be displayed obfuscated)')),
97         '$footer_text' => array('footer_text', t('Footer note'), get_config('impressum','footer_text'), t('Text for the footer. You can use BBCode here.')),
98     ));
99 }