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
| var socket; | |
| switch(deployment) { | |
| case 'local': | |
| socket = io.connect('http://hellospecial.dev:3000',{secure:false}); | |
| break; | |
| case 'dev': | |
| socket = io.connect('https://www.hellospecial.com:3001',{secure:false}); | |
| break; |
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
| <?php | |
| $tax = number_format($won_veiling->paid_amount / 100 * 21,2,‘.’,‘’); | |
| $price_as_cent_ex_btw = bcmul($won_veiling->paid_amount - $tax ,100); | |
| $price_as_cent_inc_btw = bcmul($won_veiling->paid_amount ,100); | |
| ?> | |
| <!-- Engine tracking --> | |
| <script type=“text/javascript”> | |
| function ENgine_tracker_initialized() | |
| { | |
| ENgine_tracker._setLeadData(‘840e746d18__841f78cd44’, ‘Veilingen’, ‘{!! $won_veiling->order_number !!}‘); |
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
| <?php header('Content-Type: application/json'); | |
| /** | |
| * IDS are mandatory | |
| * channel_type id increment manually | |
| * channel_mapping id increment manually | |
| * channel id increment manually | |
| */ | |
| const MANDATORY = 1; |
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
| <?php header('Content-Type: application/json'); | |
| /** | |
| * IDS are mandatory | |
| * channel_type id increment manually | |
| * channel_mapping id increment manually | |
| * channel id increment manually | |
| */ | |
| const MANDATORY = 1; |
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
| { | |
| "query": { | |
| "bool": { | |
| "must": [ | |
| { | |
| "bool": { | |
| "should": [ | |
| { | |
| "match": { | |
| "product-name": "Samsung" |
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
| <?php ini_set('display_errors', 0); | |
| header('Content-Type: application/json'); | |
| /** | |
| * @Author: Erwin Nandpersad | |
| * Class Engine | |
| */ | |
| class Engine | |
| { |
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
| <!DOCTYPE html> | |
| <html class="no-js"> | |
| <head> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
| <script type="text/javascript"> | |
| var show = true; |
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
| <script type="text/javascript"> | |
| function addEvent(obj, evt, fn) { | |
| if (obj.addEventListener) { | |
| obj.addEventListener(evt, fn, false); | |
| } | |
| else if (obj.attachEvent) { | |
| obj.attachEvent("on" + evt, fn); | |
| } | |
| } | |
| addEvent(window,"load",function(e) { |
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
| <!DOCTYPE html> | |
| <html class="no-js"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title>jQuery Exit Popup Example</title> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="css/normalize.min.css"> | |
| <link rel="stylesheet" href="css/main.css"> |
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
| <?php | |
| namespace Sendt\Console\Commands; | |
| require_once __DIR__ . '/../../../application/config.php'; | |
| use Illuminate\Console\Command; | |
| use models\general\Advertiser; | |
| use models\general\AdvertiserExport; | |
| use models\general\AdvertiserExportQuery; |