Move variables to constasts

This commit is contained in:
Diego Najar 2019-04-23 23:13:02 +02:00
parent f978de490f
commit 20b672cd09
1 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,7 @@
/*
Environment variables
If you are going to do some changes in the variable, is recommended do it before the installation
If you are going to do some changes is recommended do it before the installation
*/
// Log
@ -99,10 +99,11 @@ define('DB_TAGS_TYPES', array('published','static','sticky'));
define('ALLOWED_IMG_EXTENSION', array('gif', 'png', 'jpg', 'jpeg', 'svg'));
// Alert notification dissappear in X seconds
$GLOBALS['ALERT_DISSAPEAR_IN'] = 3; // Seconds
define('ALERT_DISSAPEAR_IN', 3);
// Number of images to show in the media manager per page
$GLOBALS['MEDIA_MANAGER_NUMBER_OF_FILES'] = 5;
define('MEDIA_MANAGER_NUMBER_OF_FILES', 5);
// Sort the image by date
$GLOBALS['MEDIA_MANAGER_SORT_BY_DATE'] = true;
define('MEDIA_MANAGER_SORT_BY_DATE', true);