]> git.mxchange.org Git - friendica.git/commitdiff
Vier: Added config.php
authorMichael Vogel <icarus@dabo.de>
Sun, 23 Feb 2014 14:57:27 +0000 (15:57 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 23 Feb 2014 14:57:27 +0000 (15:57 +0100)
view/theme/vier/config.php [new file with mode: 0644]
view/theme/vier/flat.css [new file with mode: 0644]

diff --git a/view/theme/vier/config.php b/view/theme/vier/config.php
new file mode 100644 (file)
index 0000000..653d2c8
--- /dev/null
@@ -0,0 +1,52 @@
+<?php
+/**
+ * Theme settings
+ */
+
+
+
+function theme_content(&$a){
+       if(!local_user())
+               return;
+
+       $style = get_pconfig(local_user(), 'vier', 'style');
+
+       return vier_form($a,$style);
+}
+
+function theme_post(&$a){
+       if(! local_user())
+               return;
+
+       if (isset($_POST['vier-settings-submit'])){
+               set_pconfig(local_user(), 'vier', 'style', $_POST['vier_style']);
+       }
+}
+
+
+function theme_admin(&$a){
+       $style = get_config('vier', 'style');
+       return vier_form($a,$style);
+}
+
+function theme_admin_post(&$a){
+       if (isset($_POST['vier-settings-submit'])){
+               set_config('vier', 'style', $_POST['vier_style']);
+       }
+}
+
+
+function vier_form(&$a, $style){
+       $styles = array(
+               "shadow"=>"Shadow",
+               "flat"=>"Flat"
+       );
+       $t = get_markup_template("theme_settings.tpl" );
+       $o .= replace_macros($t, array(
+               '$submit' => t('Submit'),
+               '$baseurl' => $a->get_baseurl(),
+               '$title' => t("Theme settings"),
+               '$style' => array('vier_style',t ('Set style'),$style,'',$styles),
+       ));
+       return $o;
+}
diff --git a/view/theme/vier/flat.css b/view/theme/vier/flat.css
new file mode 100644 (file)
index 0000000..4faa8a3
--- /dev/null
@@ -0,0 +1,4 @@
+*{ box-shadow: 0 0 0 0 !important;} 
+body, section { background-color: #ffffff !important;}
+#profile-jot-form { background-color: #ffffff !important;}
+.dspr, .twit, .pump, .dfrn { background-color: #ffffff !important;}