]> git.mxchange.org Git - friendica-addons.git/blob - impressum/impressum.php
Merge pull request #89 from fermionic/20121225-simplify-smarty-includes
[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.2
6  * Author: Tobias Diekershoff <http://diekershoff.homeunix.net/friendika/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 function obfuscate_email ($s) {
24     $s = str_replace('@','(at)',$s);
25     $s = str_replace('.','(dot)',$s);
26     return $s;
27 }
28 function impressum_footer($a, &$b) {
29     $text = bbcode(get_config('impressum','footer_text'), true);
30     if (! $text == '') {
31         $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->get_baseurl().'/addon/impressum/impressum.css" media="all" />';
32         $b .= '<div class="clear"></div>';
33         $b .= '<div id="impressum_footer">'.$text.'</div>';
34     }
35 }
36 function impressum_show($a,&$b) {
37     $b .= '<h3>'.t('Impressum').'</h3>';
38     $owner = get_config('impressum', 'owner');
39     $owner_profile = get_config('impressum','ownerprofile');
40     $postal = bbcode(get_config('impressum', 'postal'), true);
41     $notes = bbcode(get_config('impressum', 'notes'), true);
42     $email = obfuscate_email( get_config('impressum','email') );
43     if (strlen($owner)) {
44         if (strlen($owner_profile)) {
45             $tmp = '<a href="'.$owner_profile.'">'.$owner.'</a>';
46         } else {
47             $tmp = $owner;
48         }
49         if (strlen($email)) {
50             $b .= '<p><strong>'.t('Site Owner').'</strong>: '. $tmp .'<br /><strong>'.t('Email Address').'</strong>: '.$email.'</p>';
51         } else {
52             $b .= '<p><strong>'.t('Site Owner').'</strong>: '. $tmp .'</p>';
53         }
54         if (strlen($postal)) {
55             $b .= '<p><strong>'.t('Postal Address').'</strong><br />'. $postal .'</p>';
56         }
57         if (strlen($notes)) {
58             $b .= '<p>'.$notes.'</p>';
59         }
60     } else {
61         $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>';
62     }
63 }
64
65 function impressum_plugin_admin_post (&$a) {
66     $owner = ((x($_POST, 'owner')) ? notags(trim($_POST['owner'])) : '');
67     $ownerprofile = ((x($_POST, 'ownerprofile')) ? notags(trim($_POST['ownerprofile'])) : '');
68     $postal = ((x($_POST, 'postal')) ? (trim($_POST['postal'])) : '');
69     $notes = ((x($_POST, 'notes')) ? (trim($_POST['notes'])) : '');
70     $email = ((x($_POST, 'email')) ? notags(trim($_POST['email'])) : '');
71     $footer_text = ((x($_POST, 'footer_text')) ? (trim($_POST['footer_text'])) : '');
72     set_config('impressum','owner',strip_tags($owner));
73     set_config('impressum','ownerprofile',strip_tags($ownerprofile));
74     set_config('impressum','postal',strip_tags($postal));
75     set_config('impressum','email',strip_tags($email));
76     set_config('impressum','notes',strip_tags($notes));
77     set_config('impressum','footer_text',strip_tags($footer_text));
78     info( t('Settings updated.'). EOL );
79 }
80 function impressum_plugin_admin (&$a, &$o) {
81     $t = get_markup_template( "admin.tpl", "addon/impressum/" );
82     $o = replace_macros($t, array(
83         '$submit' => t('Submit'),
84         '$owner' => array('owner', t('Site Owner'), get_config('impressum','owner'), t('The page operators name.')),
85         '$ownerprofile' => array('ownerprofile', t('Site Owners Profile'), get_config('impressum','ownerprofile'), t('Profile address of the operator.')),
86         '$postal' => array('postal', t('Postal Address'), get_config('impressum','postal'), t('How to contact the operator via snail mail. You can use BBCode here.')),
87         '$notes' => array('notes', t('Notes'), get_config('impressum','notes'), t('Additional notes that are displayed beneath the contact information. You can use BBCode here.')),
88         '$email' => array('email', t('Email Address'), get_config('impressum','email'), t('How to contact the operator via email. (will be displayed obfuscated)')),
89         '$footer_text' => array('footer_text', t('Footer note'), get_config('impressum','footer_text'), t('Text for the footer. You can use BBCode here.')),
90     ));
91 }