-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Alexander Raszka <alexander.raszka@storeplus.de>
- Loading branch information
Showing
6 changed files
with
188 additions
and
26 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
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
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<component> | ||
<property type="string" name="accountId" /> | ||
<property type="int" name="cpIndex" /> | ||
<property type="int" name="time" /> | ||
|
||
<template> | ||
</template> | ||
|
||
<script><!-- | ||
#Struct EvoSC_CheckpointTime { | ||
Text AccountId; | ||
Integer CpIndex; | ||
Integer Time; | ||
} | ||
|
||
main() { | ||
declare EvoSC_CheckpointTime[Text] EvoCheckpointTimes for UI; | ||
declare Integer EvoCheckpointTimesUpdate for UI; | ||
|
||
EvoCheckpointTimes["{{ accountId }}"] = EvoSC_CheckpointTime{ AccountId = "{{ accountId }}", Time = {{ time }}, CpIndex = {{ cpIndex }} }; | ||
EvoCheckpointTimesUpdate = Now; | ||
} | ||
--></script> | ||
</component> |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<component> | ||
<template> | ||
</template> | ||
|
||
<script><!-- | ||
#Struct EvoSC_CheckpointTime { | ||
Text AccountId; | ||
Integer CpIndex; | ||
Integer Time; | ||
} | ||
|
||
main() { | ||
declare EvoSC_CheckpointTime[Text] EvoCheckpointTimes for UI; | ||
declare Integer EvoCheckpointTimesUpdate for UI; | ||
declare Boolean EvoCheckpointTimesReset for UI = False; | ||
|
||
EvoCheckpointTimes = EvoSC_CheckpointTime[Text]; | ||
EvoCheckpointTimesUpdate = Now; | ||
EvoCheckpointTimesReset = True; | ||
} | ||
--></script> | ||
</component> |
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