2012-05-23 01:05:39 +00:00
< ? php
/**
* Name : Start Page
* Description : Set a preferred page to load on login from home page
* Version : 1.0
* Author : Mike Macgirvin < http :// macgirvin . com / profile / mike >
2018-01-01 02:04:02 +00:00
*
2012-05-23 01:05:39 +00:00
*/
2021-11-20 09:56:55 +00:00
use Friendica\App ;
2018-12-26 07:28:16 +00:00
use Friendica\Core\Hook ;
2021-11-20 09:56:55 +00:00
use Friendica\Core\Renderer ;
2019-12-30 02:55:10 +00:00
use Friendica\DI ;
2012-05-23 01:05:39 +00:00
function startpage_install () {
2018-12-26 07:28:16 +00:00
Hook :: register ( 'home_init' , 'addon/startpage/startpage.php' , 'startpage_home_init' );
Hook :: register ( 'addon_settings' , 'addon/startpage/startpage.php' , 'startpage_settings' );
Hook :: register ( 'addon_settings_post' , 'addon/startpage/startpage.php' , 'startpage_settings_post' );
2012-05-23 01:05:39 +00:00
}
2022-06-23 05:16:22 +00:00
function startpage_home_init ( App $a , $b )
2018-08-08 06:24:47 +00:00
{
2022-10-20 21:51:49 +00:00
if ( ! DI :: userSession () -> getLocalUserId ()) {
2012-05-23 01:05:39 +00:00
return ;
2018-08-08 06:24:47 +00:00
}
2012-05-23 01:05:39 +00:00
2022-10-20 21:51:49 +00:00
$page = DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'startpage' , 'startpage' );
2022-11-23 18:33:54 +00:00
if ( $page ) {
2019-12-30 02:55:10 +00:00
DI :: baseUrl () -> redirect ( $page );
2012-05-23 01:05:39 +00:00
}
}
/**
*
* Callback from the settings post function .
* $post contains the $_POST array .
* We will make sure we ' ve got a valid user account
* and if so set our configuration setting for this person .
*
*/
2022-06-23 05:16:22 +00:00
function startpage_settings_post ( App $a , $post )
2018-08-08 06:24:47 +00:00
{
2022-10-20 21:51:49 +00:00
if ( ! DI :: userSession () -> getLocalUserId ()) {
2012-05-23 01:05:39 +00:00
return ;
2018-08-08 06:24:47 +00:00
}
if ( ! empty ( $_POST [ 'startpage-submit' ])) {
2022-10-20 21:51:49 +00:00
DI :: pConfig () -> set ( DI :: userSession () -> getLocalUserId (), 'startpage' , 'startpage' , strip_tags ( trim ( $_POST [ 'startpage' ])));
2018-08-08 06:24:47 +00:00
}
2012-05-23 01:05:39 +00:00
}
/**
*
2018-01-20 13:57:41 +00:00
* Called from the Addon Setting form .
2012-05-23 01:05:39 +00:00
* Add our own settings info to the page .
*
*/
2021-11-20 09:56:55 +00:00
function startpage_settings ( App & $a , array & $data )
2018-08-08 06:24:47 +00:00
{
2022-10-20 21:51:49 +00:00
if ( ! DI :: userSession () -> getLocalUserId ()) {
2012-05-23 01:05:39 +00:00
return ;
2018-08-08 06:24:47 +00:00
}
2012-05-23 01:05:39 +00:00
2022-10-20 21:51:49 +00:00
$startpage = DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'startpage' , 'startpage' );
2012-05-23 01:05:39 +00:00
2021-11-20 09:56:55 +00:00
$t = Renderer :: getMarkupTemplate ( 'settings.tpl' , 'addon/startpage/' );
$html = Renderer :: replaceMacros ( $t , [
'$startpage' => [ 'startpage' , DI :: l10n () -> t ( 'Home page to load after login - leave blank for profile wall' ), $startpage , DI :: l10n () -> t ( 'Examples: "network" or "notifications/system"' )],
]);
2012-05-23 01:05:39 +00:00
2021-11-20 09:56:55 +00:00
$data = [
'addon' => 'startpage' ,
'title' => DI :: l10n () -> t ( 'Startpage' ),
'html' => $html ,
];
2012-05-23 01:05:39 +00:00
}