removing neoclassic skin

This commit is contained in:
Fernando Ontiveros
2025-04-13 15:23:31 +00:00
parent eaa750ef1d
commit 8e09008402
1791 changed files with 8973 additions and 14885 deletions

View File

@@ -30,7 +30,7 @@ class BootstrapTest extends TestCase
{
$userAgent = $this->faker->userAgent;
$_SERVER ['HTTP_USER_AGENT'] = $userAgent;
$filename = "neoclassic";
$filename = "lurana";
$result = Bootstrap::streamCSSBigFile($filename);
//add more assertions

View File

@@ -494,7 +494,7 @@ class CasesTest extends TestCase
$arrayData = [
"SYS_LANG" => "en",
"SYS_SKIN" => "neoclassic",
"SYS_SKIN" => "lurana",
"SYS_SYS" => "workflow",
"APPLICATION" => $application->APP_UID,
"PROCESS" => $process->PRO_UID,
@@ -597,7 +597,7 @@ class CasesTest extends TestCase
$arrayData = [
"SYS_LANG" => "en",
"SYS_SKIN" => "neoclassic",
"SYS_SKIN" => "lurana",
"SYS_SYS" => "workflow",
"APPLICATION" => $application->APP_UID,
"PROCESS" => $process->PRO_UID,
@@ -700,7 +700,7 @@ class CasesTest extends TestCase
$arrayData = [
"SYS_LANG" => "en",
"SYS_SKIN" => "neoclassic",
"SYS_SKIN" => "lurana",
"SYS_SYS" => "workflow",
"APPLICATION" => $application->APP_UID,
"PROCESS" => $process->PRO_UID,

View File

@@ -1186,7 +1186,7 @@ class PmDynaformTest extends TestCase
public function it_should_test_get_credentials_destroy_user_logged_if_not_authenticated_user()
{
// Set the request URI, this is required by the method "getCredentials"
$_SERVER['REQUEST_URI'] = '/sysworkflow/en/neoclassic/tracker/tracker_Show';
$_SERVER['REQUEST_URI'] = '/sysworkflow/en/lurana/tracker/tracker_Show';
// Destroy variable for "USER_LOGGED" if exists
unset($_SESSION['USER_LOGGED']);

View File

@@ -620,7 +620,7 @@ class ReportTablesTest extends TestCase
$dataFields = $structure['data'];
$appData = [
'SYS_LANG' => 'en',
'SYS_SKIN' => 'neoclassic',
'SYS_SKIN' => 'lurana',
'SYS_SYS' => 'workflow',
'APPLICATION' => G::generateUniqueID(),
'PROCESS' => G::generateUniqueID(),

View File

@@ -64,7 +64,7 @@ class WsBaseTest extends TestCase
$appData = [
'SYS_LANG' => 'en',
'SYS_SKIN' => 'neoclassic',
'SYS_SKIN' => 'lurana',
'SYS_SYS' => 'workflow',
'APPLICATION' => $applicationUid,
'PROCESS' => $processUid,

View File

@@ -46,7 +46,7 @@ class SkinsTest extends TestCase
$skins = $this->object->getSkins();
$this->assertCount(2, $skins);
$this->assertEquals($skins[0]['SKIN_FOLDER_ID'], 'classic');
$this->assertEquals($skins[1]['SKIN_FOLDER_ID'], 'neoclassic');
$this->assertEquals($skins[1]['SKIN_FOLDER_ID'], 'lurana');
$this->object->createSkin('test', 'test');
$skins2 = $this->object->getSkins();
$this->assertCount(3, $skins2);
@@ -63,7 +63,7 @@ class SkinsTest extends TestCase
public function testGetSkinsCurrentWorkspace()
{
$this->object->createSkin('test', 'test');
$this->object->createSkin('test2', 'test2', 'Second skin', 'ProcessMaker Team', 'current', 'neoclassic');
$this->object->createSkin('test2', 'test2', 'Second skin', 'ProcessMaker Team', 'current', 'lurana');
$skins = $this->object->getSkins();
$skins = collect($skins)
->sortBy('SKIN_FOLDER_ID')