2011-09-25 08:56:03 +00:00
< ? php
/**
* Name : Impressum
2018-01-20 13:57:41 +00:00
* Description : Addon to add contact information to the about page ( / friendica )
2013-06-24 10:42:41 +00:00
* Version : 1.3
2013-06-14 17:40:10 +00:00
* Author : Tobias Diekershoff < https :// f . diekershoff . de / profile / tobias >
2011-09-25 08:56:03 +00:00
* License : 3 - clause BSD license
*/
2018-01-22 19:03:11 +00:00
require_once 'mod/proxy.php' ;
2012-04-23 19:49:34 +00:00
2018-02-15 02:43:40 +00:00
use Friendica\Content\Text\BBCode ;
2018-01-17 00:51:12 +00:00
use Friendica\Core\Addon ;
2017-11-06 23:55:24 +00:00
use Friendica\Core\Config ;
2018-01-22 19:03:11 +00:00
use Friendica\Core\L10n ;
2017-11-06 23:55:24 +00:00
2011-09-25 08:56:03 +00:00
function impressum_install () {
2018-01-17 00:51:12 +00:00
Addon :: registerHook ( 'about_hook' , 'addon/impressum/impressum.php' , 'impressum_show' );
Addon :: registerHook ( 'page_end' , 'addon/impressum/impressum.php' , 'impressum_footer' );
2018-01-20 13:57:41 +00:00
logger ( " installed impressum Addon " );
2011-09-25 08:56:03 +00:00
}
function impressum_uninstall () {
2018-01-17 00:51:12 +00:00
Addon :: unregisterHook ( 'about_hook' , 'addon/impressum/impressum.php' , 'impressum_show' );
Addon :: unregisterHook ( 'page_end' , 'addon/impressum/impressum.php' , 'impressum_footer' );
2018-01-20 13:57:41 +00:00
logger ( " uninstalled impressum Addon " );
2011-09-25 08:56:03 +00:00
}
2013-06-24 10:41:08 +00:00
function impressum_module () {
}
function impressum_content () {
$a = get_app ();
2018-01-01 02:04:02 +00:00
goaway ( 'friendica/' );
2013-06-24 10:41:08 +00:00
}
2011-09-25 08:56:03 +00:00
function obfuscate_email ( $s ) {
$s = str_replace ( '@' , '(at)' , $s );
$s = str_replace ( '.' , '(dot)' , $s );
return $s ;
}
2012-04-06 12:34:47 +00:00
function impressum_footer ( $a , & $b ) {
2018-02-15 02:43:40 +00:00
$text = proxy_parse_html ( BBCode :: convert ( Config :: get ( 'impressum' , 'footer_text' )));
2012-04-06 12:34:47 +00:00
if ( ! $text == '' ) {
2012-04-07 07:21:49 +00:00
$a -> page [ 'htmlhead' ] .= '<link rel="stylesheet" type="text/css" href="' . $a -> get_baseurl () . '/addon/impressum/impressum.css" media="all" />' ;
2012-08-27 15:39:52 +00:00
$b .= '<div class="clear"></div>' ;
2012-04-06 12:34:47 +00:00
$b .= '<div id="impressum_footer">' . $text . '</div>' ;
}
}
2011-09-25 08:56:03 +00:00
function impressum_show ( $a , & $b ) {
2018-01-22 19:03:11 +00:00
$b .= '<h3>' . L10n :: t ( 'Impressum' ) . '</h3>' ;
2017-11-06 23:55:24 +00:00
$owner = Config :: get ( 'impressum' , 'owner' );
$owner_profile = Config :: get ( 'impressum' , 'ownerprofile' );
2018-02-15 02:43:40 +00:00
$postal = proxy_parse_html ( BBCode :: convert ( Config :: get ( 'impressum' , 'postal' )));
$notes = proxy_parse_html ( BBCode :: convert ( Config :: get ( 'impressum' , 'notes' )));
2017-11-06 23:55:24 +00:00
$email = obfuscate_email ( Config :: get ( 'impressum' , 'email' ) );
2011-09-25 08:56:03 +00:00
if ( strlen ( $owner )) {
if ( strlen ( $owner_profile )) {
$tmp = '<a href="' . $owner_profile . '">' . $owner . '</a>' ;
} else {
$tmp = $owner ;
}
if ( strlen ( $email )) {
2018-01-22 19:03:11 +00:00
$b .= '<p><strong>' . L10n :: t ( 'Site Owner' ) . '</strong>: ' . $tmp . '<br /><strong>' . L10n :: t ( 'Email Address' ) . '</strong>: ' . $email . '</p>' ;
2011-09-25 08:56:03 +00:00
} else {
2018-01-22 19:03:11 +00:00
$b .= '<p><strong>' . L10n :: t ( 'Site Owner' ) . '</strong>: ' . $tmp . '</p>' ;
2011-09-25 08:56:03 +00:00
}
if ( strlen ( $postal )) {
2018-01-22 19:03:11 +00:00
$b .= '<p><strong>' . L10n :: t ( 'Postal Address' ) . '</strong><br />' . $postal . '</p>' ;
2011-09-25 08:56:03 +00:00
}
if ( strlen ( $notes )) {
$b .= '<p>' . $notes . '</p>' ;
}
} else {
2018-01-22 19:03:11 +00:00
$b .= '<p>' . L10n :: 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>' ;
2011-09-25 08:56:03 +00:00
}
}
2018-01-20 13:57:41 +00:00
function impressum_addon_admin_post ( & $a ) {
2011-09-25 08:56:03 +00:00
$owner = (( x ( $_POST , 'owner' )) ? notags ( trim ( $_POST [ 'owner' ])) : '' );
$ownerprofile = (( x ( $_POST , 'ownerprofile' )) ? notags ( trim ( $_POST [ 'ownerprofile' ])) : '' );
$postal = (( x ( $_POST , 'postal' )) ? ( trim ( $_POST [ 'postal' ])) : '' );
$notes = (( x ( $_POST , 'notes' )) ? ( trim ( $_POST [ 'notes' ])) : '' );
$email = (( x ( $_POST , 'email' )) ? notags ( trim ( $_POST [ 'email' ])) : '' );
2012-04-06 12:34:47 +00:00
$footer_text = (( x ( $_POST , 'footer_text' )) ? ( trim ( $_POST [ 'footer_text' ])) : '' );
2017-11-06 23:55:24 +00:00
Config :: set ( 'impressum' , 'owner' , strip_tags ( $owner ));
Config :: set ( 'impressum' , 'ownerprofile' , strip_tags ( $ownerprofile ));
Config :: set ( 'impressum' , 'postal' , strip_tags ( $postal ));
Config :: set ( 'impressum' , 'email' , strip_tags ( $email ));
Config :: set ( 'impressum' , 'notes' , strip_tags ( $notes ));
Config :: set ( 'impressum' , 'footer_text' , strip_tags ( $footer_text ));
2018-01-22 19:03:11 +00:00
info ( L10n :: t ( 'Settings updated.' ) . EOL );
2011-09-25 08:56:03 +00:00
}
2018-01-20 13:57:41 +00:00
function impressum_addon_admin ( & $a , & $o ) {
2012-12-22 20:36:35 +00:00
$t = get_markup_template ( " admin.tpl " , " addon/impressum/ " );
2018-01-15 13:15:33 +00:00
$o = replace_macros ( $t , [
2018-01-22 19:03:11 +00:00
'$submit' => L10n :: t ( 'Save Settings' ),
'$owner' => [ 'owner' , L10n :: t ( 'Site Owner' ), Config :: get ( 'impressum' , 'owner' ), L10n :: t ( 'The page operators name.' )],
'$ownerprofile' => [ 'ownerprofile' , L10n :: t ( 'Site Owners Profile' ), Config :: get ( 'impressum' , 'ownerprofile' ), L10n :: t ( 'Profile address of the operator.' )],
'$postal' => [ 'postal' , L10n :: t ( 'Postal Address' ), Config :: get ( 'impressum' , 'postal' ), L10n :: t ( 'How to contact the operator via snail mail. You can use BBCode here.' )],
'$notes' => [ 'notes' , L10n :: t ( 'Notes' ), Config :: get ( 'impressum' , 'notes' ), L10n :: t ( 'Additional notes that are displayed beneath the contact information. You can use BBCode here.' )],
'$email' => [ 'email' , L10n :: t ( 'Email Address' ), Config :: get ( 'impressum' , 'email' ), L10n :: t ( 'How to contact the operator via email. (will be displayed obfuscated)' )],
'$footer_text' => [ 'footer_text' , L10n :: t ( 'Footer note' ), Config :: get ( 'impressum' , 'footer_text' ), L10n :: t ( 'Text for the footer. You can use BBCode here.' )],
2018-01-15 13:15:33 +00:00
]);
2011-09-25 08:56:03 +00:00
}