Code Issue
----------
A number is display in the Priority column in the cases lists instead of the
priority in text.
Solution
--------
Correct display of priority column in cases lists.
The text that describes the priority is display instead of the priority number.
The number is converted to the corresponding text with the help of the function
G::LoadTranslation("ID_PRIORITY_N");
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
// ProcessMaker Test Unit Bootstrap
|
|
|
|
// Defining the PATH_SEP constant, he we are defining if the the path separator symbol will be '\\' or '/'
|
|
define('PATH_SEP', '/');
|
|
|
|
if (!defined('__DIR__')) {
|
|
define ('__DIR__', dirname(__FILE__));
|
|
}
|
|
|
|
// Defining the Home Directory
|
|
define('PATH_TRUNK', realpath(__DIR__ . '/../') . PATH_SEP);
|
|
define('PATH_HOME', PATH_TRUNK . 'workflow' . PATH_SEP);
|
|
|
|
define('SYS_SYS', $GLOBALS['SYS_SYS']);
|
|
|
|
require PATH_HOME . 'engine' . PATH_SEP . 'config' . PATH_SEP . 'paths.php';
|
|
|
|
set_include_path(
|
|
PATH_CORE . PATH_SEPARATOR .
|
|
PATH_THIRDPARTY . PATH_SEPARATOR .
|
|
PATH_THIRDPARTY . 'pear'. PATH_SEPARATOR .
|
|
PATH_RBAC_CORE . PATH_SEPARATOR .
|
|
get_include_path()
|
|
);
|
|
|
|
// perpare propel env.
|
|
require_once "propel/Propel.php";
|
|
require_once "creole/Creole.php";
|
|
|
|
Propel::init( PATH_CORE . "config/databases.php" );
|
|
|
|
//initialize required classes
|
|
G::LoadClass ('dbtable');
|
|
G::LoadClass ('system');
|
|
|
|
//read memcached configuration
|
|
$config = System::getSystemConfiguration ('', '', SYS_SYS);
|
|
define ('MEMCACHED_ENABLED', $config ['memcached']);
|
|
define ('MEMCACHED_SERVER', $config ['memcached_server']);
|
|
define ('TIME_ZONE', $config ['time_zone']); |