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
| const express = require('express'); | |
| const Podlet = require("@podium/podlet"); | |
| const fs = require("fs"); | |
| const dotenv = require('dotenv'); | |
| const externalAssets = require('./assets/externals'); | |
| const loggerMiddleware = require('./logger'); | |
| dotenv.config(); | |
| const { |
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
| { | |
| "payment": { | |
| "payment_id": "1", | |
| "amount": "10000", | |
| "date": "2018-03-14", | |
| "account": "xxxx", | |
| "emiter": "xxxxxx xxxxxx xxxx", | |
| "payment_method": "xxxxx", | |
| "status": "xxxxx", | |
| "recipient": { |
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
| public function register() | |
| { | |
| $this->app->bind( | |
| 'App\Interfaces\ICore', | |
| 'App\Classes\PlutusCore' | |
| ); | |
| $this->app->bind( | |
| 'App\Interfaces\IMapper', | |
| 'App\Classes\AccountMapper' |
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 echo 'Hola Mundo'; ?> |
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
| alert("Hola Mundo!"); |
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
| alert("Hola Mundo!"); |
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
| jQuery(".comuna_drop select").on("change", function(){ | |
| var data= { | |
| comuna_id : jQuery(this).val(), | |
| action: 'load_tarifa' | |
| }; | |
| jQuery.ajax({ | |
| type: 'POST', | |
| url: ajaxurl, | |
| data: data, | |
| success: function(resp){ |
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 | |
| error_reporting(E_ALL ^ E_NOTICE);error_reporting(E_ALL ^ E_NOTICE); | |
| /** | |
| * Theme function | |
| * | |
| * @version $Id$ | |
| * @package wpbase | |
| * @author WPOpal Team <opalwordpress@gmail.com, support@wpopal.com> | |
| * @copyright Copyright (C) 2014 wpopal.com. All Rights Reserved. |
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 App\Http\Controllers; | |
| use Closure; | |
| use Illuminate\Contracts\Auth\Guard; | |
| use Illuminate\Http\RedirectResponse; | |
| class DashboardController extends Controller { | |
| /* | |
| |-------------------------------------------------------------------------- |
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 | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Application Routes | |
| |-------------------------------------------------------------------------- | |
| | | |
| | Here is where you can register all of the routes for an application. | |
| | It's a breeze. Simply tell Laravel the URIs it should respond to | |
| | and give it the controller to call when that URI is requested. |
NewerOlder