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