-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathantonella-framework.php
38 lines (34 loc) · 1002 Bytes
/
antonella-framework.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
36
37
38
<?php
namespace SELLERCONTROL;
/*
Plugin Name: sellercontrol
Plugin URI: https://github.com/Gergab00/sellercontrol
Description: Plugin de control de los seller control.
Version:2022.04.23
Author:Gerardo Gabriel González Velázquez
Author URI: https://github.com/Gergab00
License: GPLv2 https://es-mx.wordpress.org/about/license/
Requires at least: 5.2
Requires PHP: 7.2
Framework: Antonella Framework for WP
Framework URI: http://antonellaframework.com
* @wordpress-plugin
* @category Form
* @package sellercontrol
* @author Gerardo González
* @license GPLv2 http://www.gnu.org/licenses/gpl-2.0.txt
* @link https://github.com/Gergab00
*/
defined( 'ABSPATH' ) or die( __('Lo siento por aqui no puedes pasar :)') );
/*
* Class Caller.
* cuando una clase es llamada hace un include
* al archivo con su mismo nombre
* se respeta mayusculas y minusculas
*
* @return null
*/
define('NELLA_URL',__FILE__);
$loader = require __DIR__ . '/vendor/autoload.php';
$antonella= new Start;
?>