Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
framadate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nounous
framadate
Commits
7e04bdff
Commit
7e04bdff
authored
10 years ago
by
Olivier PEREZ
Browse files
Options
Downloads
Patches
Plain Diff
Split constants.php in 2 files: constants.php + config.php
parent
3cf47aa4
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-1
1 addition, 1 deletion
.gitignore
app/inc/config.template.php
+0
-20
0 additions, 20 deletions
app/inc/config.template.php
app/inc/constants.php
+42
-0
42 additions, 0 deletions
app/inc/constants.php
app/inc/init.php
+1
-0
1 addition, 0 deletions
app/inc/init.php
with
44 additions
and
21 deletions
.gitignore
+
1
−
1
View file @
7e04bdff
...
...
@@ -4,7 +4,7 @@ admin/logs_studs.txt
composer.phar
framanav
nav
app/inc/con
stants
.php
app/inc/con
fig
.php
vendor
cache/
tpl_c/
...
...
This diff is collapsed.
Click to expand it.
app/inc/con
stants.php
.template
→
app/inc/con
fig
.template
.php
+
0
−
20
View file @
7e04bdff
...
...
@@ -17,9 +17,6 @@
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
*/
// FRAMADATE version
const
VERSION
=
'0.9.1'
;
// Application name
const
NOMAPPLICATION
=
'<Application name>'
;
...
...
@@ -55,12 +52,6 @@ $ALLOWED_LANGUAGES = [
'de_DE'
=>
'Deutsch'
,
];
// Regex
const
POLL_REGEX
=
'/^[a-z0-9]+$/'
;
const
CHOICE_REGEX
=
'/^[012]$/'
;
const
NAME_REGEX
=
'/^[áàâäãåçéèêëíìîïñóòôöõúùûüýÿæœa-z0-9_ -]+$/i'
;
const
BOOLEAN_REGEX
=
'/^(on|off|true|false|1|0)$/'
;
// Path to logo
const
LOGOBANDEAU
=
'<relative path to the logo file>'
;
...
...
@@ -79,17 +70,6 @@ const USE_REMOTE_USER = true;
// Path to the log file
const
LOG_FILE
=
'admin/stdout.log'
;
const
COMMENT_EMPTY
=
0x0000000001
;
const
COMMENT_USER_EMPTY
=
0x0000000010
;
const
COMMENT_INSERT_FAILED
=
0x0000000100
;
const
NAME_EMPTY
=
0x0000001000
;
const
NAME_TAKEN
=
0x0000010000
;
const
NO_POLL
=
0x0000100000
;
const
NO_POLL_ID
=
0x0001000000
;
const
INVALID_EMAIL
=
0x0010000000
;
const
TITLE_EMPTY
=
0x0100000000
;
const
INVALID_DATE
=
0x1000000000
;
// Config
$config
=
[
/* general config */
...
...
This diff is collapsed.
Click to expand it.
app/inc/constants.php
0 → 100644
+
42
−
0
View file @
7e04bdff
<?php
/**
* This software is governed by the CeCILL-B license. If a copy of this license
* is not distributed with this file, you can obtain one at
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
*
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
* Authors of Framadate/OpenSondate: Framasoft (https://github.com/framasoft)
*
* =============================
*
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
*
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
*/
// FRAMADATE version
const
VERSION
=
'0.9.1'
;
// Regex
const
POLL_REGEX
=
'/^[a-z0-9]+$/'
;
const
CHOICE_REGEX
=
'/^[012]$/'
;
const
NAME_REGEX
=
'/^[áàâäãåçéèêëíìîïñóòôöõúùûüýÿæœa-z0-9_ -]+$/i'
;
const
BOOLEAN_REGEX
=
'/^(on|off|true|false|1|0)$/'
;
// CSRF (300s = 5min)
const
TOKEN_TIME
=
300
;
// Errors
const
COMMENT_EMPTY
=
0x0000000001
;
const
COMMENT_USER_EMPTY
=
0x0000000010
;
const
COMMENT_INSERT_FAILED
=
0x0000000100
;
const
NAME_EMPTY
=
0x0000001000
;
const
NAME_TAKEN
=
0x0000010000
;
const
NO_POLL
=
0x0000100000
;
const
NO_POLL_ID
=
0x0001000000
;
const
INVALID_EMAIL
=
0x0010000000
;
const
TITLE_EMPTY
=
0x0100000000
;
const
INVALID_DATE
=
0x1000000000
;
This diff is collapsed.
Click to expand it.
app/inc/init.php
+
1
−
0
View file @
7e04bdff
...
...
@@ -32,6 +32,7 @@ if (ini_get('date.timezone') == '') {
define
(
'ROOT_DIR'
,
__DIR__
.
'/../../'
);
require_once
__DIR__
.
'/constants.php'
;
require_once
__DIR__
.
'/config.php'
;
require_once
__DIR__
.
'/i18n.php'
;
// Smarty
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment