This file contains hidden or 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
| <mvt:do file="g.module_library_utilities" name="l.null" value="QuickSortArray(l.settings:shippingmethods, ':price',1)" /> | |
| <mvt:comment> | |
| <!-- | |
| Deprecated: | |
| <mvt:item name="toolkit" param="asortmulti|l.all_settings:shippingmethods|:price|1" /> | |
| --> | |
| </mvt:comment> |
This file contains hidden or 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
| <mvt:assign name="g.CS_Category_Code" value="miva_variable_value( 'g.request_cookies:' $ g.store:code $ '_continueshopping' )" /> | |
| <mvt:if expr="len(g.CS_Category_Code)"> | |
| &mvt:global:CS_Category_Code; | |
| </mvt:if> |
This file contains hidden or 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
| <mvt:comment>Define JSON holding variable</mvt:comment> | |
| <mvt:assign name="l.settings:json" value="''" /> | |
| <mvt:comment>Define URL Variable</mvt:comment> | |
| <mvt:assign name="g.url" value="'http://example.com/'" /> | |
| <mvt:comment>Call `g.url` and Concatenate `s.callvalue` into `l.settings:json`</mvt:comment> | |
| <mvt:call action="g.url" method="'GET'"> | |
| <mvt:assign name="l.settings:json" value="l.settings:json $ s.callvalue" /> | |
| </mvt:call> |
This file contains hidden or 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
| #1EABBD,#F42434,#F42434,#FFFFFF,#000000,#FFFFFF,#000000,#C40926 |
This file contains hidden or 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
| #1F2433,#1B324A,#1B324A,#BAB972,#1B324A,#C2B790,#896492,#E64976 |
This file contains hidden or 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
| // ---- Credit Card Checker (No OPAY) ---- // | |
| var CreditCardChecker = { | |
| init: function (cc_input) { | |
| this.cc = $(cc_input); | |
| this.cc.keyup(function() { | |
| $('.credit-card.highlighted-card').removeClass('highlighted-card'); | |
| this.check( $(this.cc).val() ); | |
| }.bind(this)); |
This file contains hidden or 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
| import re | |
| def format_file(file1, file2): | |
| output = re.sub(r'STUFF_TO_REPLACE', r'STUFF_TO_PUT_IN_PLACE', file1.read() ) | |
| file2.write(output) | |
| format_file(open('input.txt', 'r'), open('output.txt', 'w')) |
This file contains hidden or 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
| RAW DATA | |
| 2_#10 Can | |
| URL ENCODED | |
| 2_%2310%20Can | |
| ESCAPED FOR HTACCESS | |
| 2_\%2310\%20Can |
This file contains hidden or 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
Show hidden characters
| [ | |
| { | |
| "caption": "File: Open Containing Folder...", | |
| "command": "open_containing_folder", | |
| "args": { | |
| "files": ["$file_path/$file_name"] | |
| } | |
| } | |
| ] |
This file contains hidden or 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
| <mvt:do file="g.Module_Library_DB" name="l.success" value="Category_Load_ID( l.settings:product:cancat_id, l.loadedCategory )" /> | |
| <!-- @@ <mvt:eval expr="l.success" /> --> | |
| <!-- @@ &mvt:global:MvDO_Error; --> | |
| <mvt:assign name="g.var" value="miva_array_serialize(l.loadedCategory)" /> | |
| <!-- @@ &mvt:global:var; --> |