2012-03-30 19:21:14 +00:00
|
|
|
<?php
|
2018-01-15 02:22:39 +00:00
|
|
|
/**
|
2024-08-24 10:20:23 +00:00
|
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
2024-08-24 10:20:23 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
2018-01-15 02:22:39 +00:00
|
|
|
*/
|
2020-02-09 15:18:46 +00:00
|
|
|
|
2020-01-18 15:50:57 +00:00
|
|
|
use Friendica\DI;
|
2017-11-07 02:22:52 +00:00
|
|
|
|
2022-07-12 23:48:36 +00:00
|
|
|
/*
|
|
|
|
* This script can be included when the maintenance mode is on, which requires us to avoid any config call and
|
|
|
|
* use the following hardcoded defaults
|
|
|
|
*/
|
|
|
|
$color = 'dark';
|
2018-01-15 02:22:39 +00:00
|
|
|
$quattro_align = false;
|
2022-07-12 23:48:36 +00:00
|
|
|
$textarea_font_size = '20';
|
|
|
|
$post_font_size = '12';
|
2015-06-29 21:03:44 +00:00
|
|
|
|
2022-07-12 23:48:36 +00:00
|
|
|
if (DI::mode()->has(\Friendica\App\Mode::MAINTENANCEDISABLED)) {
|
|
|
|
$site_color = DI::config()->get("quattro", "color", $color);
|
|
|
|
$site_quattro_align = DI::config()->get("quattro", "align", $quattro_align);
|
|
|
|
$site_textarea_font_size = DI::config()->get("quattro", "tfs", $textarea_font_size);
|
|
|
|
$site_post_font_size = DI::config()->get("quattro", "pfs", $post_font_size);
|
2017-11-07 22:15:59 +00:00
|
|
|
|
2022-07-12 23:48:36 +00:00
|
|
|
$uid = $_REQUEST['puid'] ?? 0;
|
2017-11-07 22:15:59 +00:00
|
|
|
|
2022-07-12 23:48:36 +00:00
|
|
|
$color = DI::pConfig()->get($uid, "quattro", "color", $site_color);
|
|
|
|
$quattro_align = DI::pConfig()->get($uid, 'quattro', 'align', $site_quattro_align);
|
|
|
|
$textarea_font_size = DI::pConfig()->get($uid, "quattro", "tfs", $site_textarea_font_size);
|
|
|
|
$post_font_size = DI::pConfig()->get($uid, "quattro", "pfs", $site_post_font_size);
|
2018-01-15 02:22:39 +00:00
|
|
|
}
|
2017-11-07 22:15:59 +00:00
|
|
|
|
2019-04-01 01:50:00 +00:00
|
|
|
$color = \Friendica\Util\Strings::sanitizeFilePathItem($color);
|
|
|
|
|
2018-01-15 02:22:39 +00:00
|
|
|
if (file_exists("$THEMEPATH/$color/style.css")) {
|
|
|
|
echo file_get_contents("$THEMEPATH/$color/style.css");
|
|
|
|
}
|
2017-11-07 22:15:59 +00:00
|
|
|
|
2012-03-30 19:21:14 +00:00
|
|
|
|
2018-01-15 02:22:39 +00:00
|
|
|
if ($quattro_align == "center") {
|
|
|
|
echo "
|
|
|
|
html { width: 100%; margin:0px; padding:0px; }
|
|
|
|
body {
|
|
|
|
margin: 50px auto;
|
|
|
|
width: 900px;
|
|
|
|
}
|
|
|
|
";
|
|
|
|
}
|
2012-09-17 07:29:58 +00:00
|
|
|
|
2017-11-07 22:15:59 +00:00
|
|
|
|
2018-01-15 02:22:39 +00:00
|
|
|
echo "
|
|
|
|
textarea { font-size: ${textarea_font_size}px; }
|
|
|
|
.wall-item-comment-wrapper .comment-edit-text-full { font-size: ${textarea_font_size}px; }
|
|
|
|
#jot .profile-jot-text:focus { font-size: ${textarea_font_size}px; }
|
|
|
|
.wall-item-container .wall-item-content { font-size: ${post_font_size}px; }
|
|
|
|
";
|