[frio] Normalize quoting style in PHP files
This commit is contained in:
parent
b65c8c55a4
commit
eb9b832c3a
6 changed files with 153 additions and 153 deletions
|
@ -21,10 +21,10 @@ class Image
|
|||
public static function get_options($arr)
|
||||
{
|
||||
$bg_image_options = [
|
||||
'repeat' => ['frio_bg_image_option', L10n::t("Repeat the image"), "repeat", L10n::t("Will repeat your image to fill the background."), ($arr["bg_image_option"] == "repeat")],
|
||||
'stretch' => ['frio_bg_image_option', L10n::t("Stretch"), "stretch", L10n::t("Will stretch to width/height of the image."), ($arr["bg_image_option"] == "stretch")],
|
||||
'cover' => ['frio_bg_image_option', L10n::t("Resize fill and-clip"), "cover", L10n::t("Resize to fill and retain aspect ratio."), ($arr["bg_image_option"] == "cover")],
|
||||
'contain' => ['frio_bg_image_option', L10n::t("Resize best fit"), "contain", L10n::t("Resize to best fit and retain aspect ratio."), ($arr["bg_image_option"] == "contain")],
|
||||
'repeat' => ['frio_bg_image_option', L10n::t('Repeat the image'), 'repeat', L10n::t('Will repeat your image to fill the background.'), ($arr['bg_image_option'] == 'repeat')],
|
||||
'stretch' => ['frio_bg_image_option', L10n::t('Stretch'), 'stretch', L10n::t('Will stretch to width/height of the image.'), ($arr['bg_image_option'] == 'stretch')],
|
||||
'cover' => ['frio_bg_image_option', L10n::t('Resize fill and-clip'), 'cover', L10n::t('Resize to fill and retain aspect ratio.'), ($arr['bg_image_option'] == 'cover')],
|
||||
'contain' => ['frio_bg_image_option', L10n::t('Resize best fit'), 'contain', L10n::t('Resize to best fit and retain aspect ratio.'), ($arr['bg_image_option'] == 'contain')],
|
||||
];
|
||||
|
||||
return $bg_image_options;
|
||||
|
|
|
@ -22,41 +22,41 @@ use Friendica\Core\PConfig;
|
|||
function get_schema_info($schema)
|
||||
{
|
||||
$theme = current_theme();
|
||||
$themepath = "view/theme/" . $theme . "/";
|
||||
$themepath = 'view/theme/' . $theme . '/';
|
||||
$schema = PConfig::get(local_user(), 'frio', 'schema');
|
||||
|
||||
$info = [
|
||||
'name' => $schema,
|
||||
'description' => "",
|
||||
'description' => '',
|
||||
'author' => [],
|
||||
'version' => "",
|
||||
'version' => '',
|
||||
'overwrites' => []
|
||||
];
|
||||
|
||||
if (!is_file($themepath . "schema/" . $schema . ".php")) return $info;
|
||||
if (!is_file($themepath . 'schema/' . $schema . '.php')) return $info;
|
||||
|
||||
$f = file_get_contents($themepath . "schema/" . $schema . ".php");
|
||||
$f = file_get_contents($themepath . 'schema/' . $schema . '.php');
|
||||
|
||||
$r = preg_match("|/\*.*\*/|msU", $f, $m);
|
||||
$r = preg_match('|/\*.*\*/|msU', $f, $m);
|
||||
|
||||
if ($r) {
|
||||
$ll = explode("\n", $m[0]);
|
||||
foreach ($ll as $l) {
|
||||
$l = trim($l, "\t\n\r */");
|
||||
if ($l != "") {
|
||||
list($k, $v) = array_map("trim", explode(":", $l, 2));
|
||||
if ($l != '') {
|
||||
list($k, $v) = array_map('trim', explode(':', $l, 2));
|
||||
$k = strtolower($k);
|
||||
if ($k == "author") {
|
||||
$r = preg_match("|([^<]+)<([^>]+)>|", $v, $m);
|
||||
if ($k == 'author') {
|
||||
$r = preg_match('|([^<]+)<([^>]+)>|', $v, $m);
|
||||
if ($r) {
|
||||
$info['author'][] = ['name' => $m[1], 'link' => $m[2]];
|
||||
} else {
|
||||
$info['author'][] = ['name' => $v];
|
||||
}
|
||||
} elseif ($k == "overwrites") {
|
||||
} elseif ($k == 'overwrites') {
|
||||
$theme_settings = explode(',', str_replace(' ', '', $v));
|
||||
foreach ($theme_settings as $key => $value) {
|
||||
$info["overwrites"][$value] = true;
|
||||
$info['overwrites'][$value] = true;
|
||||
}
|
||||
} else {
|
||||
if (array_key_exists($k, $info)) {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<?php $frio = "view/theme/frio"; ?>
|
||||
<?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?>
|
||||
</head>
|
||||
<body id=\"top\">";
|
||||
<body id="top">
|
||||
<?php if($_SERVER['REQUEST_URI'] == "/"){header('Location: /login');} ?>
|
||||
<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
|
||||
<?php
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue