This file has been truncated, but you can view the full file.
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
Running with gitlab-runner 14.10.1 (f761588f) | |
on Ionic Package Android Runner 8edcfcad | |
Preparing the "kubernetes" executor | |
Using Kubernetes namespace: ionic-runners | |
Using Kubernetes executor with image 319312831725.dkr.ecr.us-west-2.amazonaws.com/appflow-runners/linux:2023.10 ... | |
Using attach strategy to execute scripts... | |
Preparing environment | |
Waiting for pod ionic-runners/runner-8edcfcad-project-0-concurrent-15qlm2 to be running, status is Pending | |
Running on runner-8edcfcad-project-0-concurrent-15qlm2 via gitlab-runner-5cd9bd7bf6-z82g8... |
This file has been truncated, but you can view the full file.
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
Running with gitlab-runner 14.10.1 (f761588f) | |
on Ionic Package Android Runner 8edcfcad | |
Preparing the "kubernetes" executor | |
Using Kubernetes namespace: ionic-runners | |
Using Kubernetes executor with image 319312831725.dkr.ecr.us-west-2.amazonaws.com/appflow-runners/linux:2023.10 ... | |
Using attach strategy to execute scripts... | |
Preparing environment | |
Waiting for pod ionic-runners/runner-8edcfcad-project-0-concurrent-8jt24t to be running, status is Pending | |
Running on runner-8edcfcad-project-0-concurrent-8jt24t via gitlab-runner-5cd9bd7bf6-z82g8... |
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
<script> | |
const homeUrl = "<?php echo get_option('home'); ?>"; | |
</script> |
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
var request = require('request'); | |
var options = { | |
'method': 'POST', | |
'url': 'SEU ENDPOINT', | |
'headers': { | |
'Content-Type': 'application/x-www-form-urlencoded' | |
}, | |
form: { | |
'origem': 'postman', | |
'destino': '5511999999999', |
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
<?php | |
$curl = curl_init(); | |
curl_setopt_array($curl, array( | |
CURLOPT_URL => 'SEU ENDPOINT', | |
CURLOPT_RETURNTRANSFER => true, | |
CURLOPT_ENCODING => '', | |
CURLOPT_MAXREDIRS => 10, | |
CURLOPT_TIMEOUT => 0, |
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
{ | |
"status":"sucesso", | |
"info":{ | |
"pedidos_processando_concluido":[ | |
{ | |
"ID pedido":2518, | |
"Nome Cliente":"Diogenes Junior", | |
"E-mail Cliente":"[email protected]", | |
"Valor do pedido":"90.00", | |
"Valor do pedido elegível para comissão":55, |
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
<?php | |
add_action( 'woocommerce_payment_complete', 'custom_woocommerce_auto_complete_order' ); | |
function custom_woocommerce_auto_complete_order( $order_id ) { | |
if ( ! $order_id ) { | |
return; | |
} | |
$order = wc_get_order( $order_id ); | |
// Verifique se o pedido é para produtos digitais |
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
<section class="configuracoes__carteira__depositar__card configuracoes__carteira__depositar__card--NOME-DO-SEU-COLLAPSE"> | |
<header class="configuracoes__carteira__depositar__card__header"> | |
<aside> | |
<i class="fas fa-check"></i> | |
<h4>NUMERO</h4> | |
<div> | |
<h2>TITULO DA ABA</h2> | |
</div> | |
</aside> |
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
<?php | |
/** | |
* ------------------------------------------------------------------------------------------------ | |
* | |
* | |
* CARRINHO / RESUMO FLUTUANTE DAS APOSTAS | |
* | |
* | |
* ------------------------------------------------------------------------------------------------ | |
*/ |
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
<?php if(get_field("tempo_de_preparo")!=""): ?> | |
<p> | |
<b>Tempo de preparo:</b> <?php echo get_field("tempo_de_preparo") ?> | |
</p> | |
<?php endif; ?> | |
<?php if(get_field("quantidade_de_porcoes")!=""): ?> | |
<p> | |
<b>Quantidade de porções:</b> <?php echo get_field("quantidade_de_porcoes") ?> | |
</p> |
NewerOlder