-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
* @copyright YetiForce Sp. z o.o | ||
* @license YetiForce Public License 4.0 (licenses/LicenseEN.txt or yetiforce.com) | ||
* @author Mariusz Krzaczkowski <[email protected]> | ||
* @author Radosław Skrzypczak <[email protected]> | ||
*/ | ||
|
||
namespace Conf; | ||
|
@@ -17,35 +18,25 @@ | |
class Config | ||
{ | ||
/** @var string portal version. */ | ||
public static $version = '1.1'; | ||
public static $version = '6.2'; | ||
|
||
/** @var string Portal name. */ | ||
public static $siteName = ''; | ||
|
||
/** @var string CRM API URL ex. https://gitdeveloper.yetiforce.com/webservice/. */ | ||
public static $apiUrl = 'http://yeti/webservice/'; | ||
// public static $apiUrl = '__API_PATH__'; | ||
public static $apiUrl = '__API_PATH__'; | ||
|
||
/** @var string Portal URL. */ | ||
public static $portalUrl = 'http://portal2/'; | ||
public static $portalUrl = '__PORTAL_PATH__'; | ||
|
||
/** @var string Web service - Application KEY. */ | ||
public static $apiKey = 'VMUwRByXHSq1bLW485ikfvcC97P6gJsz'; | ||
public static $apiKey = '__API_KEY__'; | ||
|
||
/** | ||
* [email protected] | ||
* [email protected] | ||
* zx. | ||
* VMUwRByXHSq1bLW485ikfvcC97P6gJsz. | ||
* | ||
* @var string Web service - Application login. | ||
*/ | ||
public static $serverName = 'portal'; // partner, portal | ||
// public static $serverName = 'partner'; // partner, portal | ||
/** @var string Web service - Application login. */ | ||
public static $serverName = '__SERVER_NAME__'; | ||
|
||
/** @var string Web service - Application password. */ | ||
public static $serverPass = 'portal'; // partner, portal | ||
// public static $serverPass = 'partner'; // partner, portal | ||
public static $serverPass = '__SERVER_PASS__'; | ||
|
||
/** @var string The path to the logo on the login page */ | ||
public static $logoLoginPage = 'layouts/logo_login.png'; | ||
|
@@ -54,7 +45,7 @@ class Config | |
public static $logoMenu = 'layouts/logo_menu.png'; | ||
|
||
/** @var string Default module. */ | ||
public static $defaultModule = 'Contacts'; | ||
public static $defaultModule = 'HelpDesk'; | ||
|
||
/** @var string Default language, ex. en-US , pl-PL */ | ||
public static $language = 'en-US'; | ||
|
@@ -69,7 +60,7 @@ class Config | |
public static $itemsPrePage = 12; | ||
|
||
/** @var array Available record display options in listview for datatable element - [[values],[labels]]. */ | ||
public static $listEntriesPerPage = [[10, 15, 30, 50, 50], [10, 15, 30, 50, 50]]; | ||
public static $listEntriesPerPage = [[10, 25, 50, 100], [10, 25, 50, 100]]; | ||
|
||
/** | ||
* Debugging. | ||
|
@@ -157,7 +148,7 @@ class Config | |
*/ | ||
|
||
/** @var string Header alert message */ | ||
public static $headerAlertMessage = 'Development version'; | ||
public static $headerAlertMessage = ''; | ||
|
||
/** @var string Header alert type, ex. alert-primary, alert-danger, alert-warning, alert-info */ | ||
public static $headerAlertType = 'alert-primary'; | ||
|
@@ -166,7 +157,7 @@ class Config | |
public static $headerAlertIcon = 'fas fa-exclamation-triangle'; | ||
|
||
/** @var string Login page alert message */ | ||
public static $loginPageAlertMessage = "Portal - Development version \n [email protected]/partner\n [email protected]/customer \n [email protected]/vendor"; | ||
public static $loginPageAlertMessage = ''; | ||
|
||
/** @var string Login page alert type, ex. alert-primary, alert-danger, alert-warning, alert-info */ | ||
public static $loginPageAlertType = 'alert-primary'; | ||
|