]> git.mxchange.org Git - friendica-addons.git/blobdiff - jappixmini/jappix/php/vars-design.php
jappixmini: include jappix source
[friendica-addons.git] / jappixmini / jappix / php / vars-design.php
diff --git a/jappixmini/jappix/php/vars-design.php b/jappixmini/jappix/php/vars-design.php
new file mode 100644 (file)
index 0000000..4f70d8e
--- /dev/null
@@ -0,0 +1,49 @@
+<?php
+
+/*
+
+Jappix - An open social platform
+These are the design configuration variables
+
+-------------------------------------------------
+
+License: AGPL
+Author: Vanaryon
+Last revision: 25/08/11
+
+*/
+
+// Someone is trying to hack us?
+if(!defined('JAPPIX_BASE'))
+       exit;
+
+// Define initial logo form values
+$logo_default = ' checked=""';
+$logo_own = '';
+
+// Define initial background form values
+$background_default = ' checked=""';
+$background_image = '';
+$background_color = '';
+$background_image_repeat_no = '';
+$background_image_repeat_all = '';
+$background_image_repeat_x = ' selected=""';
+$background_image_repeat_y = '';
+$background_image_horizontal_center = ' selected=""';
+$background_image_horizontal_left = '';
+$background_image_horizontal_right = '';
+$background_image_vertical_center = ' selected=""';
+$background_image_vertical_top = '';
+$background_image_vertical_bottom = '';
+$background_image_adapt = '';
+
+// Define initial notice form values
+$notice_none = ' checked=""';
+$notice_simple = '';
+$notice_advanced = '';
+$notice_text = '';
+
+// Current background folder
+$backgrounds_folder = 'backgrounds';
+
+?>