]> git.mxchange.org Git - friendica-addons.git/blob - jappixmini/jappix/php/vars-design.php
Twitter: Fetch the contact relation
[friendica-addons.git] / jappixmini / jappix / php / vars-design.php
1 <?php
2
3 /*
4
5 Jappix - An open social platform
6 These are the design configuration variables
7
8 -------------------------------------------------
9
10 License: AGPL
11 Author: Vanaryon
12 Last revision: 25/08/11
13
14 */
15
16 // Someone is trying to hack us?
17 if(!defined('JAPPIX_BASE'))
18         exit;
19
20 // Define initial logo form values
21 $logo_default = ' checked=""';
22 $logo_own = '';
23
24 // Define initial background form values
25 $background_default = ' checked=""';
26 $background_image = '';
27 $background_color = '';
28 $background_image_repeat_no = '';
29 $background_image_repeat_all = '';
30 $background_image_repeat_x = ' selected=""';
31 $background_image_repeat_y = '';
32 $background_image_horizontal_center = ' selected=""';
33 $background_image_horizontal_left = '';
34 $background_image_horizontal_right = '';
35 $background_image_vertical_center = ' selected=""';
36 $background_image_vertical_top = '';
37 $background_image_vertical_bottom = '';
38 $background_image_adapt = '';
39
40 // Define initial notice form values
41 $notice_none = ' checked=""';
42 $notice_simple = '';
43 $notice_advanced = '';
44 $notice_text = '';
45
46 // Current background folder
47 $backgrounds_folder = 'backgrounds';
48
49 ?>