2011-12-28 07:36:15 +00:00
< ? php
/**
* Name : Page Header
* Description : Inserts a page header
2015-04-29 18:38:04 +00:00
* Version : 1.1
2011-12-28 07:36:15 +00:00
* Author : Keith Fernie < http :// friendika . me4 . it / profile / keith >
2015-04-29 18:31:16 +00:00
* Hauke Altmann < https :// snarl . de / profile / tugelblend >
2011-12-28 07:36:15 +00:00
*
*/
2019-02-26 14:47:17 +00:00
2019-05-08 04:45:34 +00:00
use Friendica\App ;
2017-11-06 23:55:24 +00:00
use Friendica\Core\Config ;
2018-12-26 07:28:16 +00:00
use Friendica\Core\Hook ;
2018-01-22 19:03:11 +00:00
use Friendica\Core\L10n ;
2018-10-31 14:55:15 +00:00
use Friendica\Core\Renderer ;
2017-11-06 23:55:24 +00:00
2011-12-28 07:36:15 +00:00
function pageheader_install () {
2019-05-08 04:45:34 +00:00
Hook :: register ( 'page_content_top' , __FILE__ , 'pageheader_fetch' );
2011-12-28 07:36:15 +00:00
}
2019-05-08 04:45:34 +00:00
function pageheader_addon_admin ( App & $a , & $s )
{
if ( ! is_site_admin ()) {
2011-12-28 07:36:15 +00:00
return ;
2019-05-08 04:45:34 +00:00
}
2011-12-28 07:36:15 +00:00
/* Add our stylesheet to the page so we can make our settings look nice */
2019-05-08 04:45:34 +00:00
$stylesheetPath = __DIR__ . '/pageheader.css' ;
$a -> registerStylesheet ( $stylesheetPath );
2011-12-28 07:36:15 +00:00
2017-11-06 23:55:24 +00:00
$words = Config :: get ( 'pageheader' , 'text' );
2011-12-28 07:36:15 +00:00
if ( ! $words )
2012-04-02 05:27:10 +00:00
$words = '' ;
2011-12-28 07:36:15 +00:00
2019-05-08 04:45:34 +00:00
$t = Renderer :: getMarkupTemplate ( 'admin.tpl' , __DIR__ );
2018-10-31 14:55:15 +00:00
$s .= Renderer :: replaceMacros ( $t , [
2019-05-08 04:45:34 +00:00
'$title' => L10n :: t ( '"pageheader" Settings' ),
'$phwords' => [ 'pageheader-words' , L10n :: t ( 'Message' ), $words , L10n :: t ( 'Message to display on every page on this server (or put a pageheader.html file in your docroot)' )],
'$submit' => L10n :: t ( 'Save Settings' )
2018-03-11 17:54:01 +00:00
]);
2011-12-28 07:36:15 +00:00
return ;
}
2019-05-08 04:45:34 +00:00
function pageheader_addon_admin_post ( App $a , & $b )
{
if ( ! is_site_admin ()) {
2011-12-28 07:36:15 +00:00
return ;
2019-05-08 04:45:34 +00:00
}
2011-12-28 07:36:15 +00:00
2019-02-26 14:47:17 +00:00
if ( ! empty ( $_POST [ 'pageheader-submit' ])) {
if ( isset ( $_POST [ 'pageheader-words' ])) {
Config :: set ( 'pageheader' , 'text' , trim ( strip_tags ( $_POST [ 'pageheader-words' ])));
}
2018-01-22 19:03:11 +00:00
info ( L10n :: t ( 'pageheader Settings saved.' ) . EOL );
2011-12-28 07:36:15 +00:00
}
}
2019-05-08 04:45:34 +00:00
function pageheader_fetch ( App $a , & $b )
{
2015-05-13 20:51:00 +00:00
if ( file_exists ( 'pageheader.html' )){
$s = file_get_contents ( 'pageheader.html' );
} else {
2017-11-06 23:55:24 +00:00
$s = Config :: get ( 'pageheader' , 'text' );
2015-05-13 20:51:00 +00:00
}
2011-12-28 07:36:15 +00:00
2019-05-08 04:45:34 +00:00
$stylesheetPath = __DIR__ . '/pageheader.css' ;
$a -> registerStylesheet ( $stylesheetPath );
2015-05-13 20:51:00 +00:00
2019-05-08 04:45:34 +00:00
if ( $s ) {
2015-04-29 18:31:16 +00:00
$b .= '<div class="pageheader">' . $s . '</div>' ;
2019-05-08 04:45:34 +00:00
}
2011-12-28 07:36:15 +00:00
}