Update function calls
update function calls to use profile class
This commit is contained in:
parent
4cfa46186a
commit
4fb2547df8
45 changed files with 360 additions and 294 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ use Friendica\Core\PConfig;
|
|||
use Friendica\Core\System;
|
||||
use Friendica\Database\DBM;
|
||||
use Friendica\Model\GContact;
|
||||
use Friendica\Model\Profile;
|
||||
|
||||
require_once "include/plugin.php";
|
||||
require_once "mod/proxy.php";
|
||||
|
@ -150,7 +151,7 @@ function vier_community_info() {
|
|||
foreach ($r as $rr) {
|
||||
$entry = replace_macros($tpl,array(
|
||||
'$id' => $rr['id'],
|
||||
//'$profile_link' => zrl($rr['url']),
|
||||
//'$profile_link' => Profile::zrl($rr['url']),
|
||||
'$profile_link' => 'follow/?url='.urlencode($rr['url']),
|
||||
'$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_MICRO),
|
||||
'$alt_text' => $rr['name'],
|
||||
|
@ -280,7 +281,7 @@ function vier_community_info() {
|
|||
}
|
||||
|
||||
foreach ($r AS $index => $helper)
|
||||
$r[$index]["url"] = zrl($helper["url"]);
|
||||
$r[$index]["url"] = Profile::zrl($helper["url"]);
|
||||
|
||||
$r[] = array("url" => "help/Quick-Start-guide", "name" => t("Quick Start"));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue