1
0
Fork 0

Update function calls

update function calls to use profile class
This commit is contained in:
Adam Magness 2018-01-14 21:22:39 -05:00
commit 4fb2547df8
45 changed files with 360 additions and 294 deletions

View file

@ -1,30 +1,36 @@
<?php
/**
* @file view/theme/vier/style.php
*/
use Friendica\Core\Config;
use Friendica\Core\PConfig;
use Friendica\Model\Profile;
$uid = get_theme_uid();
$uid = Profile::getThemeUid();
$style = PConfig::get($uid, 'vier', 'style');
if ($style == "")
if ($style == "") {
$style = Config::get('vier', 'style');
}
if ($style == "")
if ($style == "") {
$style = "plus";
}
if ($style == "flat")
if ($style == "flat") {
$stylecssfile = 'view/theme/vier/flat.css';
else if ($style == "netcolour")
} else if ($style == "netcolour") {
$stylecssfile = 'view/theme/vier/netcolour.css';
else if ($style == "breathe")
} else if ($style == "breathe") {
$stylecssfile = 'view/theme/vier/breathe.css';
else if ($style == "plus")
} else if ($style == "plus") {
$stylecssfile = 'view/theme/vier/plus.css';
else if ($style == "dark")
} else if ($style == "dark") {
$stylecssfile = 'view/theme/vier/dark.css';
else if ($style == "plusminus")
} else if ($style == "plusminus") {
$stylecssfile = 'view/theme/vier/plusminus.css';
}
if (file_exists($THEMEPATH."//style.css")) {
$stylecss = file_get_contents($THEMEPATH."//style.css")."\n";
@ -34,8 +40,9 @@ if (file_exists($THEMEPATH."//style.css")) {
$stylemodified = filemtime($stylecssfile);
$stylecss .= file_get_contents($stylecssfile);
if ($stylemodified > $modified)
if ($stylemodified > $modified) {
$modified = $stylemodified;
}
$modified = gmdate('r', $modified);