mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 07:03:41 +00:00
small change in my contact informations in the addon files
This commit is contained in:
parent
a12d68066b
commit
1a99b8a4ea
8 changed files with 17 additions and 6 deletions
|
@ -1,6 +1,7 @@
|
||||||
Impressum Plugin for Friendica
|
Impressum Plugin for Friendica
|
||||||
|
|
||||||
Author: Tobias Diekershoff
|
Author: Tobias Diekershoff
|
||||||
|
http://diekershoff.homeunix.net/friendika/profile/tobias
|
||||||
tobias.diekershoff@gmx.net
|
tobias.diekershoff@gmx.net
|
||||||
|
|
||||||
License: 3-clause BSD license
|
License: 3-clause BSD license
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Name: Impressum
|
* Name: Impressum
|
||||||
* Description: Plugin to add contact information to the about page (/friendica)
|
* Description: Plugin to add contact information to the about page (/friendica)
|
||||||
* Version: 1.1
|
* Version: 1.1
|
||||||
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
|
* Author: Tobias Diekershoff <http://diekershoff.homeunix.net/friendika/profile/tobias>
|
||||||
* License: 3-clause BSD license
|
* License: 3-clause BSD license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ function obfuscate_email ($s) {
|
||||||
function impressum_footer($a, &$b) {
|
function impressum_footer($a, &$b) {
|
||||||
$text = get_config('impressum','footer_text');
|
$text = get_config('impressum','footer_text');
|
||||||
if (! $text == '') {
|
if (! $text == '') {
|
||||||
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->get_baseurl().'/addon/impressum/impressum.css" media="all" />\r\n';
|
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->get_baseurl().'/addon/impressum/impressum.css" media="all" />';
|
||||||
$b .= '<div id="impressum_footer">'.$text.'</div>';
|
$b .= '<div id="impressum_footer">'.$text.'</div>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
## Piwik Plugin ##
|
## Piwik Plugin ##
|
||||||
|
|
||||||
by Tobias Diekershoff
|
by Tobias Diekershoff
|
||||||
|
http://diekershoff.homeunix.net/friendika/profile/tobias
|
||||||
tobias.diekershoff(at)gmx.net
|
tobias.diekershoff(at)gmx.net
|
||||||
|
|
||||||
This addon allows you to embed the code necessary for the FLOSS webanalytics
|
This addon allows you to embed the code necessary for the FLOSS webanalytics
|
||||||
|
@ -19,6 +20,13 @@ styling the opt-out notice.
|
||||||
|
|
||||||
### Configuration ###
|
### Configuration ###
|
||||||
|
|
||||||
|
The easiest way to configure this addon is by activating the admin panels of
|
||||||
|
your ~friendica server and then enter the needed details on the config page
|
||||||
|
for the addon.
|
||||||
|
|
||||||
|
If you don't want to use the admin panel, you can configure the addon through
|
||||||
|
the .htconfig file.
|
||||||
|
|
||||||
Open the .htconfig.php file and add "piwik" to the list of activated addons.
|
Open the .htconfig.php file and add "piwik" to the list of activated addons.
|
||||||
|
|
||||||
$a->config['system']['addon'] = "piwik, ..."
|
$a->config['system']['addon'] = "piwik, ..."
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Name: Piwik Analytics
|
* Name: Piwik Analytics
|
||||||
* Description: Piwik Analytics Plugin for Friendica
|
* Description: Piwik Analytics Plugin for Friendica
|
||||||
* Version: 1.1
|
* Version: 1.1
|
||||||
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
|
* Author: Tobias Diekershoff <http://diekershoff.homeunix.net/friendika/profile/tobias>
|
||||||
* Author: Klaus Weidenbach
|
* Author: Klaus Weidenbach
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ function piwik_analytics($a,&$b) {
|
||||||
* associated CSS file. We just have to tell Friendica to get it
|
* associated CSS file. We just have to tell Friendica to get it
|
||||||
* into the page header.
|
* into the page header.
|
||||||
*/
|
*/
|
||||||
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/piwik/piwik.css' . '" media="all" />' . "\r\n";
|
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/piwik/piwik.css' . '" media="all" />';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get the configuration variables from the .htconfig file.
|
* Get the configuration variables from the .htconfig file.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
____ StatusNet Plugin ____
|
____ StatusNet Plugin ____
|
||||||
by Tobias Diekershoff
|
by Tobias Diekershoff
|
||||||
|
http://diekershoff.homeunix.net/friendika/profile/tobias
|
||||||
tobias.diekershoff(at)gmx.net
|
tobias.diekershoff(at)gmx.net
|
||||||
|
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Name: StatusNet Connector
|
* Name: StatusNet Connector
|
||||||
* Description: Relay public postings to a connected StatusNet account
|
* Description: Relay public postings to a connected StatusNet account
|
||||||
* Version: 1.0.4
|
* Version: 1.0.4
|
||||||
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
|
* Author: Tobias Diekershoff <http://diekershoff.homeunix.net/friendika/profile/tobias>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* StatusNet Plugin for Friendica
|
/* StatusNet Plugin for Friendica
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
____ Twitter Plugin ____
|
____ Twitter Plugin ____
|
||||||
By Tobias Diekershoff
|
By Tobias Diekershoff
|
||||||
|
http://diekershoff.homeunix.net/friendika/profile/tobias
|
||||||
tobias.diekershoff(at)gmx.net
|
tobias.diekershoff(at)gmx.net
|
||||||
|
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Name: Twitter Connector
|
* Name: Twitter Connector
|
||||||
* Description: Relay public postings to a connected Twitter account
|
* Description: Relay public postings to a connected Twitter account
|
||||||
* Version: 1.0.3
|
* Version: 1.0.3
|
||||||
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
|
* Author: Tobias Diekershoff <http://diekershoff.homeunix.net/friendika/profile/tobias>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue