Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
85dd544
N°9144 WIP
Timmy38 Jan 23, 2026
a54b11c
N°9144 Split wizard steps files
Timmy38 Jan 26, 2026
fd6ce5f
N°9144 Adding StepSequencer
Timmy38 Jan 28, 2026
ea44e39
N°9144 DataAuditSequencer v0
Timmy38 Jan 29, 2026
4e769a1
N°9144 Fix target env
Timmy38 Jan 30, 2026
6b4413f
N°9144 Move backup to recap screen
Timmy38 Feb 3, 2026
d0ac19c
N°9144 Button Back from recap screen return to extensions choice inst…
Timmy38 Feb 4, 2026
e1c96ee
N°9144 Add buttons "Go to backoffice" & "Ignore and continue"
Timmy38 Feb 6, 2026
709a278
N°9144 Exit readonlymode when exception is thrown
Timmy38 Feb 9, 2026
a2496f4
N°9144 Fix CodeStyle
Timmy38 Feb 9, 2026
b516466
N°9144 Rebase Fix #1
Timmy38 Feb 9, 2026
049a494
N°9144 Rebase Fix #2
Timmy38 Feb 9, 2026
f1c8591
N°9144 Temp fix
Timmy38 Feb 9, 2026
f5be709
N°9144 Remove temp flags
Timmy38 Feb 12, 2026
44d917c
N°9144 Remove temp flags
Timmy38 Feb 12, 2026
2f14b34
N°9144 Fix unit tests
Timmy38 Feb 12, 2026
7789d3e
N°9144 Fix skip audit
Timmy38 Feb 12, 2026
4d789ae
N°9144 Code style
Timmy38 Feb 12, 2026
b257d25
N°9144 Split audit & install sequencers
Timmy38 Feb 12, 2026
defca2d
N°9144 Replace strings with class names
Timmy38 Feb 13, 2026
0ace957
N°9144 Check new step class before instanciating
Timmy38 Feb 17, 2026
9875bae
N°9144 CS fix
Timmy38 Feb 17, 2026
9cfeec8
N°9144 Sequencer unittest, WizardState object, MetaModel startup opti…
Timmy38 Feb 19, 2026
c64958d
N°9144 Rename NewStep
Timmy38 Feb 19, 2026
53cdb87
N°9144 Fix Code Style
Timmy38 Feb 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion css/setup.css

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions css/setup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -682,9 +682,6 @@ body {
overflow: auto;
text-align: center;
}
#installation_progress {
display: none;
}
#fresh_content{
border: 0;
min-height: 300px;
Expand Down
14 changes: 14 additions & 0 deletions setup/SetupDBBackup.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

class SetupDBBackup extends DBBackup
{
protected function LogInfo($sMsg)
{
SetupLog::Ok('Info - '.$sMsg);
}

protected function LogError($sMsg)
{
SetupLog::Ok('Error - '.$sMsg);
}
}
3 changes: 1 addition & 2 deletions setup/ajax.dataloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@ function FatalErrorCatcher($sOutput)
ini_set('display_errors', true);
ini_set('display_startup_errors', true);

require_once(APPROOT.'/setup/wizardcontroller.class.inc.php');
require_once(APPROOT.'/setup/wizardsteps.class.inc.php');
require_once(APPROOT.'/setup/wizardsteps_autoload.php');

$sClass = utils::ReadParam('step_class', '');
$sState = utils::ReadParam('step_state', '');
Expand Down
Loading