1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/source/server/vars-design.php
titoko@titoko.fr 979b376609 update 1.0.1
2014-03-12 14:52:47 +01:00

49 lines
1.1 KiB
PHP

<?php
/*
Jappix - An open social platform
These are the design configuration variables
-------------------------------------------------
License: AGPL
Author: Valérian Saliou
*/
// 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';
?>