]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/smoothly/theme.php
Merge pull request #10472 from annando/proxy
[friendica.git] / view / theme / smoothly / theme.php
index f373cdec5ff56561096c7c556c2b8b2ee750928e..e20e9003f9c6ab9504f380015e7540bf000e4526 100644 (file)
@@ -12,7 +12,6 @@
 
 use Friendica\App;
 use Friendica\Core\Renderer;
-use Friendica\Core\System;
 use Friendica\DI;
 
 function smoothly_init(App $a) {
@@ -20,7 +19,7 @@ function smoothly_init(App $a) {
 
        $cssFile = null;
        $ssl_state = null;
-       $baseurl = System::baseUrl($ssl_state);
+       $baseurl = DI::baseUrl()->get($ssl_state);
        DI::page()['htmlhead'] .= <<< EOT
 
 <script>
@@ -87,10 +86,32 @@ if (! function_exists('_js_in_foot')) {
                /** @purpose insert stuff in bottom of page
                */
                $ssl_state = null;
-               $baseurl = System::baseUrl($ssl_state);
+               $baseurl = DI::baseUrl()->get($ssl_state);
                $bottom['$baseurl'] = $baseurl;
                $tpl = Renderer::getMarkupTemplate('bottom.tpl');
 
                return DI::page()['bottom'] = Renderer::replaceMacros($tpl, $bottom);
        }
 }
+
+/**
+ * @param int|null $uid
+ * @return null
+ * @see \Friendica\Core\Theme::getBackgroundColor()
+ * @TODO Implement this function
+ */
+function smoothly_get_background_color(int $uid = null)
+{
+       return null;
+}
+
+/**
+ * @param int|null $uid
+ * @return null
+ * @see \Friendica\Core\Theme::getThemeColor()
+ * @TODO Implement this function
+ */
+function smoothly_get_theme_color(int $uid = null)
+{
+       return null;
+}