2016-03-28 14:29:05 +00:00
< ? php
2020-02-09 15:34:23 +00:00
/**
2023-01-01 14:36:24 +00:00
* @ copyright Copyright ( C ) 2010 - 2023 , the Friendica project
2020-02-09 15:34:23 +00:00
*
* @ license GNU AGPL version 3 or any later version
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation , either version 3 of the
* License , or ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Affero General Public License for more details .
*
* You should have received a copy of the GNU Affero General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*
*/
2017-04-30 04:07:00 +00:00
use Friendica\App ;
2018-10-31 14:35:50 +00:00
use Friendica\Core\Renderer ;
2020-01-18 15:50:57 +00:00
use Friendica\DI ;
2017-04-30 04:07:00 +00:00
2018-01-22 12:29:50 +00:00
require_once 'view/theme/frio/php/Image.php' ;
2016-03-28 14:29:05 +00:00
2018-04-25 00:05:20 +00:00
function theme_post ( App $a )
{
2022-10-20 21:45:14 +00:00
if ( ! DI :: userSession () -> getLocalUserId ()) {
2016-12-20 10:56:34 +00:00
return ;
}
2016-03-28 14:29:05 +00:00
2017-10-23 13:16:23 +00:00
if ( isset ( $_POST [ 'frio-settings-submit' ])) {
2020-08-15 23:29:51 +00:00
foreach ([
'scheme' ,
2020-08-20 02:58:00 +00:00
'scheme_accent' ,
2020-08-15 23:29:51 +00:00
'nav_bg' ,
'nav_icon_color' ,
'link_color' ,
'background_color' ,
'contentbg_transp' ,
'background_image' ,
'bg_image_option' ,
'login_bg_image' ,
2022-10-16 15:24:50 +00:00
'login_bg_color' ,
2022-10-16 15:49:27 +00:00
'always_open_compose' ,
2020-08-15 23:29:51 +00:00
] as $field ) {
if ( isset ( $_POST [ 'frio_' . $field ])) {
2022-10-20 21:45:14 +00:00
DI :: pConfig () -> set ( DI :: userSession () -> getLocalUserId (), 'frio' , $field , $_POST [ 'frio_' . $field ]);
2020-08-15 23:29:51 +00:00
}
}
2022-10-20 21:45:14 +00:00
DI :: pConfig () -> set ( DI :: userSession () -> getLocalUserId (), 'frio' , 'css_modified' , time ());
2017-10-23 13:16:23 +00:00
}
2016-03-28 14:29:05 +00:00
}
2018-04-25 00:05:20 +00:00
function theme_admin_post ( App $a )
{
2021-11-04 20:29:59 +00:00
if ( ! $a -> isSiteAdmin ()) {
2017-10-23 18:26:31 +00:00
return ;
}
if ( isset ( $_POST [ 'frio-settings-submit' ])) {
2020-08-15 23:29:51 +00:00
foreach ([
'scheme' ,
2020-08-20 02:58:00 +00:00
'scheme_accent' ,
2020-08-15 23:29:51 +00:00
'nav_bg' ,
'nav_icon_color' ,
'link_color' ,
'background_color' ,
'contentbg_transp' ,
'background_image' ,
'bg_image_option' ,
'login_bg_image' ,
2022-10-16 15:24:50 +00:00
'login_bg_color' ,
2022-10-16 15:49:27 +00:00
'always_open_compose' ,
2020-08-15 23:29:51 +00:00
] as $field ) {
if ( isset ( $_POST [ 'frio_' . $field ])) {
DI :: config () -> set ( 'frio' , $field , $_POST [ 'frio_' . $field ]);
}
}
2020-01-19 20:21:53 +00:00
DI :: config () -> set ( 'frio' , 'css_modified' , time ());
2017-10-23 18:26:31 +00:00
}
}
2022-10-16 15:24:50 +00:00
function theme_content () : string
2018-04-25 00:05:20 +00:00
{
2022-10-20 21:45:14 +00:00
if ( ! DI :: userSession () -> getLocalUserId ()) {
2022-10-16 15:24:50 +00:00
return '' ;
2016-12-20 10:56:34 +00:00
}
2019-07-18 03:08:56 +00:00
2022-10-16 15:24:50 +00:00
$arr = [
2022-10-20 21:45:14 +00:00
'scheme' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'scheme' ,
DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'schema' ,
2022-10-16 15:24:50 +00:00
DI :: config () -> get ( 'frio' , 'scheme' ,
DI :: config () -> get ( 'frio' , 'schema' )
)
)
),
'share_string' => '' ,
2022-10-20 21:45:14 +00:00
'scheme_accent' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'scheme_accent' , DI :: config () -> get ( 'frio' , 'scheme_accent' )),
'nav_bg' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'nav_bg' , DI :: config () -> get ( 'frio' , 'nav_bg' )),
'nav_icon_color' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'nav_icon_color' , DI :: config () -> get ( 'frio' , 'nav_icon_color' )),
'link_color' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'link_color' , DI :: config () -> get ( 'frio' , 'link_color' )),
'background_color' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'background_color' , DI :: config () -> get ( 'frio' , 'background_color' )),
'contentbg_transp' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'contentbg_transp' , DI :: config () -> get ( 'frio' , 'contentbg_transp' )),
'background_image' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'background_image' , DI :: config () -> get ( 'frio' , 'background_image' )),
'bg_image_option' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'bg_image_option' , DI :: config () -> get ( 'frio' , 'bg_image_option' )),
'always_open_compose' => DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'frio' , 'always_open_compose' , DI :: config () -> get ( 'frio' , 'always_open_compose' , false )),
2022-10-16 15:24:50 +00:00
];
2017-10-23 13:16:23 +00:00
return frio_form ( $arr );
2016-03-28 14:29:05 +00:00
}
2022-10-16 15:24:50 +00:00
function theme_admin () : string
2018-04-25 00:05:20 +00:00
{
2022-10-20 21:45:14 +00:00
if ( ! DI :: userSession () -> getLocalUserId ()) {
2022-10-16 15:24:50 +00:00
return '' ;
2017-10-23 18:26:31 +00:00
}
2022-10-16 15:24:50 +00:00
$arr = [
'scheme' => DI :: config () -> get ( 'frio' , 'scheme' , DI :: config () -> get ( 'frio' , 'schema' )),
'scheme_accent' => DI :: config () -> get ( 'frio' , 'scheme_accent' ),
'share_string' => '' ,
'nav_bg' => DI :: config () -> get ( 'frio' , 'nav_bg' ),
'nav_icon_color' => DI :: config () -> get ( 'frio' , 'nav_icon_color' ),
'link_color' => DI :: config () -> get ( 'frio' , 'link_color' ),
'background_color' => DI :: config () -> get ( 'frio' , 'background_color' ),
'contentbg_transp' => DI :: config () -> get ( 'frio' , 'contentbg_transp' ),
'background_image' => DI :: config () -> get ( 'frio' , 'background_image' ),
'bg_image_option' => DI :: config () -> get ( 'frio' , 'bg_image_option' ),
'login_bg_image' => DI :: config () -> get ( 'frio' , 'login_bg_image' ),
'login_bg_color' => DI :: config () -> get ( 'frio' , 'login_bg_color' ),
2022-10-16 15:49:27 +00:00
'always_open_compose' => DI :: config () -> get ( 'frio' , 'always_open_compose' , false ),
2022-10-16 15:24:50 +00:00
];
2017-10-23 18:26:31 +00:00
return frio_form ( $arr );
}
2017-10-23 13:16:23 +00:00
2018-04-25 00:05:20 +00:00
function frio_form ( $arr )
{
2018-04-25 00:26:14 +00:00
require_once 'view/theme/frio/php/scheme.php' ;
2020-08-20 02:54:12 +00:00
require_once 'view/theme/frio/theme.php' ;
2017-01-09 12:06:08 +00:00
2018-04-25 00:26:14 +00:00
$scheme_info = get_scheme_info ( $arr [ 'scheme' ]);
2018-04-25 00:12:43 +00:00
$disable = $scheme_info [ 'overwrites' ];
2016-04-28 23:49:09 +00:00
2020-08-20 02:58:00 +00:00
$schemes = [
'light' => DI :: l10n () -> t ( 'Light (Accented)' ),
2020-08-20 02:58:47 +00:00
'dark' => DI :: l10n () -> t ( 'Dark (Accented)' ),
2020-08-20 02:58:59 +00:00
'black' => DI :: l10n () -> t ( 'Black (Accented)' ),
2020-08-20 02:58:00 +00:00
];
$legacy_schemes = [];
foreach ( glob ( 'view/theme/frio/scheme/*.php' ) ? : [] as $file ) {
$scheme = basename ( $file , '.php' );
if ( ! in_array ( $scheme , [ 'default' , 'light' , 'dark' , 'black' ])) {
$scheme_name = ucfirst ( $scheme );
$legacy_schemes [ $scheme ] = $scheme_name ;
2016-03-28 14:29:05 +00:00
}
}
2020-01-18 19:52:34 +00:00
$background_image_help = '<strong>' . DI :: l10n () -> t ( 'Note' ) . ': </strong>' . DI :: l10n () -> t ( 'Check image permissions if all users are allowed to see the image' );
2016-03-28 14:29:05 +00:00
2018-10-31 14:44:06 +00:00
$t = Renderer :: getMarkupTemplate ( 'theme_settings.tpl' );
2018-01-15 13:05:12 +00:00
$ctx = [
2020-01-18 19:52:34 +00:00
'$submit' => DI :: l10n () -> t ( 'Submit' ),
'$title' => DI :: l10n () -> t ( 'Theme settings' ),
2020-08-20 02:58:00 +00:00
'$custom' => DI :: l10n () -> t ( 'Custom' ),
'$legacy' => DI :: l10n () -> t ( 'Legacy' ),
'$accented' => DI :: l10n () -> t ( 'Accented' ),
'$scheme' => [ 'frio_scheme' , DI :: l10n () -> t ( 'Select color scheme' ), $arr [ 'scheme' ], $schemes , $legacy_schemes ],
'$scheme_accent' => ! $scheme_info [ 'accented' ] ? '' : [ 'frio_scheme_accent' , DI :: l10n () -> t ( 'Select scheme accent' ), $arr [ 'scheme_accent' ], [ 'blue' => DI :: l10n () -> t ( 'Blue' ), 'red' => DI :: l10n () -> t ( 'Red' ), 'purple' => DI :: l10n () -> t ( 'Purple' ), 'green' => DI :: l10n () -> t ( 'Green' ), 'pink' => DI :: l10n () -> t ( 'Pink' )]],
2020-08-15 23:29:51 +00:00
'$share_string' => $arr [ 'scheme' ] != '---' ? '' : [ 'frio_share_string' , DI :: l10n () -> t ( 'Copy or paste schemestring' ), $arr [ 'share_string' ], DI :: l10n () -> t ( 'You can copy this string to share your theme with others. Pasting here applies the schemestring' ), false , false ],
2020-01-18 19:52:34 +00:00
'$nav_bg' => array_key_exists ( 'nav_bg' , $disable ) ? '' : [ 'frio_nav_bg' , DI :: l10n () -> t ( 'Navigation bar background color' ), $arr [ 'nav_bg' ], '' , false ],
'$nav_icon_color' => array_key_exists ( 'nav_icon_color' , $disable ) ? '' : [ 'frio_nav_icon_color' , DI :: l10n () -> t ( 'Navigation bar icon color ' ), $arr [ 'nav_icon_color' ], '' , false ],
'$link_color' => array_key_exists ( 'link_color' , $disable ) ? '' : [ 'frio_link_color' , DI :: l10n () -> t ( 'Link color' ), $arr [ 'link_color' ], '' , false ],
'$background_color' => array_key_exists ( 'background_color' , $disable ) ? '' : [ 'frio_background_color' , DI :: l10n () -> t ( 'Set the background color' ), $arr [ 'background_color' ], '' , false ],
2020-08-15 23:36:24 +00:00
'$contentbg_transp' => array_key_exists ( 'contentbg_transp' , $disable ) ? '' : [ 'frio_contentbg_transp' , DI :: l10n () -> t ( 'Content background opacity' ), $arr [ 'contentbg_transp' ] ? ? 100 , '' ],
2020-01-18 19:52:34 +00:00
'$background_image' => array_key_exists ( 'background_image' , $disable ) ? '' : [ 'frio_background_image' , DI :: l10n () -> t ( 'Set the background image' ), $arr [ 'background_image' ], $background_image_help , false ],
'$bg_image_options_title' => DI :: l10n () -> t ( 'Background image style' ),
2017-10-23 13:16:23 +00:00
'$bg_image_options' => Image :: get_options ( $arr ),
2022-10-16 15:49:27 +00:00
'$always_open_compose' => [ 'frio_always_open_compose' , DI :: l10n () -> t ( 'Always open Compose page' ), $arr [ 'always_open_compose' ], DI :: l10n () -> t ( 'The New Post button always open the <a href="/compose">Compose page</a> instead of the modal form. When this is disabled, the Compose page can be accessed with a middle click on the link or from the modal.' )],
2018-01-15 13:05:12 +00:00
];
2018-01-14 18:19:24 +00:00
2018-04-25 00:12:43 +00:00
if ( array_key_exists ( 'login_bg_image' , $arr ) && ! array_key_exists ( 'login_bg_image' , $disable )) {
2020-01-18 19:52:34 +00:00
$ctx [ '$login_bg_image' ] = [ 'frio_login_bg_image' , DI :: l10n () -> t ( 'Login page background image' ), $arr [ 'login_bg_image' ], $background_image_help , false ];
2018-01-17 15:33:27 +00:00
}
2018-04-25 00:12:43 +00:00
if ( array_key_exists ( 'login_bg_color' , $arr ) && ! array_key_exists ( 'login_bg_color' , $disable )) {
2020-01-18 19:52:34 +00:00
$ctx [ '$login_bg_color' ] = [ 'frio_login_bg_color' , DI :: l10n () -> t ( 'Login page background color' ), $arr [ 'login_bg_color' ], DI :: l10n () -> t ( 'Leave background image and color empty for theme defaults' ), false ];
2018-04-25 00:05:20 +00:00
}
2018-01-14 18:19:24 +00:00
2022-10-16 15:24:50 +00:00
return Renderer :: replaceMacros ( $t , $ctx );
2016-03-28 14:29:05 +00:00
}