-
Notifications
You must be signed in to change notification settings - Fork 0
/
loja-wp-pagseguro.php
35 lines (33 loc) · 1.37 KB
/
loja-wp-pagseguro.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/*
Plugin Name: Loja WP PagSeguro
Version: 1.0
Plugin URI: https://github.com/vitorhugoro1/loja-wp-pagseguro
Description:
Author: Vitor Hugo R Merencio (Polyvenn)
Author URI: https://github.com/vitorhugoro1/
*/
define('LOJA_ROOT', plugin_dir_path( __FILE__ ));
define('LOJA_INCLUDES', LOJA_ROOT . 'includes/');
define('LOJA_ASSETS', LOJA_ROOT . 'assets/');
require LOJA_INCLUDES . 'pagseguro/vendor/autoload.php';
require LOJA_INCLUDES . 'phpexcel/vendor/autoload.php';
require LOJA_INCLUDES . 'php-barcode-generator-master/vendor/autoload.php';
require LOJA_INCLUDES . 'cmb2/init.php';
require LOJA_INCLUDES . 'cmb2-conditionals/cmb2-conditionals.php';
require LOJA_INCLUDES . 'cmb2-date-range/wds-cmb2-date-range-field.php';
require LOJA_ROOT . 'class-pagseguro-config.php';
require LOJA_ROOT . 'class-pager-template.php';
require LOJA_ROOT . 'class-post-types.php';
require LOJA_ROOT . 'class-user.php';
require LOJA_ROOT . 'class-screens.php';
require LOJA_ROOT . 'class-shortcodes.php';
require LOJA_ROOT . 'class-app-service.php';
require LOJA_ROOT . 'class-helpers.php';
require LOJA_ROOT . 'class-post-categories.php';
require LOJA_ROOT . 'class-meta-boxes.php';
require LOJA_ROOT . 'class-ingresso-functions.php';
require LOJA_ROOT . 'class-eventos-setup.php';
require LOJA_ROOT . 'class-loja-init.php';
require LOJA_ROOT . 'class-exportar.php';
require LOJA_ASSETS . 'load-assets.php';