PluginProbe
SuperFrete / 2.1.5
SuperFrete v2.1.5
trunk 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4
superfrete / superfrete.php

superfrete.php in SuperFrete 2.1.5, at superfrete.php

24 lines 662 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: SuperFrete
4 Description: Plugin that provides integration with the SuperFrete platform.
5 Version: 2.1.5
6 Author: Super Frete
7 Author URI: https://zafarie.com.br/
8 Text Domain: superfrete
9 License: GPLv2 or later
10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
11 */
12 if (!defined('ABSPATH')) {
13 exit; // Segurança para evitar acesso direto
14 }
15
16 // Inclui a classe principal do plugin
17 include_once __DIR__ . '/app/App.php';
18
19 // Inicializa o plugin
20 new SuperFrete\App();
21
22
23 add_filter('plugin_action_links_' . plugin_basename(__FILE__), ['SuperFrete\App', 'superfrete_add_settings_link']);
24