Commits on Source (3127)
Some changes are not shown.
For a faster browsing experience, only 20 of 1000+ files are shown. Download one of the files below to see all changes.
.gitignore
0 → 100644
README.txt
deleted
100644 → 0
This diff is collapsed.
composer.json
0 → 100644
{ | ||
"name": "vtiger/vtigercrm", | ||
"description": "Vtiger CRM", | ||
"type": "project", | ||
"license": "VPL", | ||
"authors": [ | ||
{ | ||
"name": "Vtiger", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"files": ["includes/Loader.php"] | ||
}, | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": ">=8.1", | ||
"ext-mysqli": "*", | ||
"ext-imap": "*", | ||
"ext-curl": "*", | ||
"smarty/smarty": "^4.3", | ||
"dg/rss-php": "^1.5", | ||
"ezyang/htmlpurifier": "^4.16", | ||
"tecnickcom/tcpdf": "^6.6", | ||
"monolog/monolog": "^3.5", | ||
"league/oauth2-client": "^2.7", | ||
"phpmailer/phpmailer": "^6.9", | ||
"league/oauth2-google": "^4.0" | ||
} | ||
} |
composer.lock
0 → 100644
This diff is collapsed.
... | ... | @@ -28,9 +28,6 @@ ini_set('memory_limit','512M'); |
// show or hide calendar, world clock, calculator, chat and CKEditor | ||
// Do NOT remove the quotes if you set these to false! | ||
$CALENDAR_DISPLAY = 'true'; | ||
$WORLD_CLOCK_DISPLAY = 'true'; | ||
$CALCULATOR_DISPLAY = 'true'; | ||
$CHAT_DISPLAY = 'true'; | ||
$USE_RTE = 'true'; | ||
// helpdesk support email id and support name (Example: '[email protected]' and 'vtiger support') | ||
... | ... | @@ -114,24 +111,14 @@ $allow_exports = 'all'; |
// files with one of these extensions will have '.txt' appended to their filename on upload | ||
// upload_badext default value = php, php3, php4, php5, pl, cgi, py, asp, cfm, js, vbs, html, htm | ||
$upload_badext = array('php', 'php3', 'php4', 'php5', 'pl', 'cgi', 'py', 'asp', 'cfm', 'js', 'vbs', 'html', 'htm', 'exe', 'bin', 'bat', 'sh', 'dll', 'phps', 'phtml', 'xhtml', 'rb', 'msi', 'jsp', 'shtml', 'sth', 'shtm'); | ||
// full path to include directory including the trailing slash | ||
// includeDirectory default value = $root_directory..'include/ | ||
$includeDirectory = $root_directory.'include/'; | ||
$upload_badext = array('php', 'php3', 'php4', 'php5', 'pl', 'cgi', 'py', 'asp', 'cfm', 'js', 'vbs', 'html', 'htm', 'exe', 'bin', 'bat', 'sh', 'dll', 'phps', 'phtml', 'xhtml', 'rb', 'msi', 'jsp', 'shtml', 'sth', 'shtm', 'htaccess'); | ||
// list_max_entries_per_page default value = 20 | ||
$list_max_entries_per_page = '20'; | ||
// limitpage_navigation default value = 5 | ||
$limitpage_navigation = '5'; | ||
// history_max_viewed default value = 5 | ||
$history_max_viewed = '5'; | ||
// default_module default value = Home | ||
$default_module = 'Home'; | ||
// default_action default value = index | ||
$default_action = 'index'; | ||
... | ... | @@ -139,10 +126,6 @@ $default_action = 'index'; |
// default_theme default value = blue | ||
$default_theme = 'softed'; | ||
// show or hide time to compose each page | ||
// calculate_response_time default value = true | ||
$calculate_response_time = true; | ||
// default text that is placed initially in the login form for user name | ||
// no default_user_name default value | ||
$default_user_name = ''; | ||
... | ... | @@ -154,12 +137,6 @@ $default_password = ''; |
// create user with default username and password | ||
// create_default_user default value = false | ||
$create_default_user = false; | ||
// default_user_is_admin default value = false | ||
$default_user_is_admin = false; | ||
// if your MySQL/PHP configuration does not support persistent connections set this to true to avoid a large performance slowdown | ||
// disable_persistent_connections default value = false | ||
$disable_persistent_connections = false; | ||
//Master currency name | ||
$currency_name = '_MASTER_CURRENCY_'; | ||
... | ... | @@ -172,13 +149,6 @@ $default_charset = '_VT_CHARSET_'; |
// default_language default value = en_us | ||
$default_language = '_VT_DEFAULT_LANGUAGE_'; | ||
// add the language pack name to every translation string in the display. | ||
// translation_string_prefix default value = false | ||
$translation_string_prefix = false; | ||
//Option to cache tabs permissions for speed. | ||
$cache_tab_perms = true; | ||
//Option to hide empty home blocks if no entries. | ||
$display_empty_home_blocks = false; | ||
... | ... | @@ -205,5 +175,8 @@ if(isset($default_timezone) && function_exists('date_default_timezone_set')) { |
//Set the default layout | ||
$default_layout = 'v7'; | ||
//Maximum Listview Fields Selection Size | ||
$maxListFieldsSelectionSize = 15; | ||
include_once 'config.security.php'; | ||
?> |
config_override.dev.php
0 → 100644
config_override.sample.php
0 → 100644
cron/.htaccess
0 → 100644
cron/class.phpmailer.php
deleted
100755 → 0
This diff is collapsed.
cron/class.smtp.php
deleted
100755 → 0
This diff is collapsed.