Skip to content

epic/FOUR-11496: [PRD] New Script Modal Redesign IT1 #5642

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 35 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1546d46
feature/FOUR-12352
luNunezProcessmaker Nov 15, 2023
df8581c
feature/FOUR-12352
luNunezProcessmaker Nov 15, 2023
25d573c
feature/FOUR-12352
luNunezProcessmaker Nov 15, 2023
3f3f011
feature/FOUR-12352
luNunezProcessmaker Nov 15, 2023
8ca4f2f
FOUR-11498:Initial script Modal
fagubla Nov 15, 2023
0a43fa5
Merge branch 'feature/FOUR-11496' of https://github.com/ProcessMaker/…
luNunezProcessmaker Nov 15, 2023
91eb0bb
Merge pull request #5631 from ProcessMaker/feature/FOUR-12352
pmPaulis Nov 16, 2023
2b95ff8
Merge pull request #5632 from ProcessMaker/feature/FOUR-11498
pmPaulis Nov 16, 2023
7f45cea
feature/FOUR-12189
luNunezProcessmaker Nov 16, 2023
0b483ae
Merge pull request #5646 from ProcessMaker/feature/FOUR-12189
pmPaulis Nov 17, 2023
0c14d7e
feature/FOUR-12430
luNunezProcessmaker Nov 17, 2023
6aaff0e
FOUR-12188:Create a New Dropdwon-Card component with preview Icons
fagubla Nov 17, 2023
cd30720
Merge branch 'feature/FOUR-11496' of https://github.com/ProcessMaker/…
luNunezProcessmaker Nov 17, 2023
0a12b77
feature/FOUR-12430
luNunezProcessmaker Nov 17, 2023
47fbcde
feature/FOUR-12430
luNunezProcessmaker Nov 17, 2023
8a3e42a
feature/FOUR-12430
luNunezProcessmaker Nov 17, 2023
4fede8f
feature/FOUR-12430
luNunezProcessmaker Nov 17, 2023
00c576e
Merge pull request #5657 from ProcessMaker/feature/FOUR-12188
pmPaulis Nov 20, 2023
b6c3cb3
feature/FOUR-12430
luNunezProcessmaker Nov 20, 2023
c71cfca
Merge pull request #5659 from ProcessMaker/feature/FOUR-12430
pmPaulis Nov 20, 2023
9eaefdb
FOUR-12488
pmPaulis Nov 20, 2023
cdcaf9d
FOUR-12482:Integration: New Script Modal Redesign
fagubla Nov 20, 2023
a90f837
Merge pull request #5673 from ProcessMaker/feature/FOUR-12482
pmPaulis Nov 21, 2023
0ab2803
FOUR-12505:Other script executor does not have an icon on the modal s…
fagubla Nov 21, 2023
fda293e
Fixing QA Observation Close Modal
CarliPinell Nov 21, 2023
8cdd064
Merge pull request #5678 from ProcessMaker/bugfix/FOUR-12505
pmPaulis Nov 22, 2023
eeb77e2
Solving Default Admin user after close window
CarliPinell Nov 22, 2023
5030764
FOUR-12504:It is not possible to recognize the new custom script exec…
fagubla Nov 22, 2023
49dd175
Merge pull request #5683 from ProcessMaker/bugfix/FOUR-12504
pmPaulis Nov 22, 2023
4fa1c34
Merge pull request #5680 from ProcessMaker/bugfix/FOUR-12502
pmPaulis Nov 22, 2023
97c2caa
FOUR-12525:The language selected on the script is not shown in settings
fagubla Nov 22, 2023
4aeec70
QA Observations solved
CarliPinell Nov 23, 2023
14b90fa
Merge pull request #5685 from ProcessMaker/bugfix/FOUR-12525
pmPaulis Nov 24, 2023
40c507c
Merge pull request #5672 from ProcessMaker/feature/FOUR-12488
pmPaulis Nov 24, 2023
2b90a01
Merge pull request #5691 from ProcessMaker/bugfix/FOUR-12502-B
pmPaulis Nov 24, 2023
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
5 changes: 4 additions & 1 deletion ProcessMaker/Models/ScriptExecutor.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ public static function list($language = null)
}

foreach ($executors->get() as $executor) {
$list[$executor->id] = $executor->language . ' - ' . $executor->title;
$list[$executor->id] = [
'language' => $executor->language,
'title' => $executor->title,
];
}

return $list;
Expand Down
5 changes: 5 additions & 0 deletions resources/img/script_lang/default.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions resources/img/script_lang/javascript.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions resources/img/script_lang/lua.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions resources/img/script_lang/php.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading