-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheqconect.php
39 lines (29 loc) · 1.27 KB
/
eqconect.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
39
<?php
/**
* @link https://www.gorvet.com
* @since 1.0.0
* @package EQConnect
*
* @wordpress-plugin
* Plugin Name: Easy Quick Connect
* Plugin URI: https://www.gorvet.com/aumenta-la-interaccion-en-tu-web-con-easy-quick-connect/
* Description: Ofrece a tus visitantes hasta 4 formas de contacto personalizables, convirtiendo tus visitas en oportunidades. ¡Aumenta la interacción con esta burbuja flotante de contacto!
* Version: 1.2
* Author: Juank de Gorvet
* Author URI: https://www.gorvet.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: eqconnect
* Domain Path: /languages
*/
defined( 'ABSPATH' ) || die();
define( 'EQCONNECT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'EQCONNECT_DIR', plugin_dir_path( __FILE__ ) );
define( 'EQCONNECT_PLUGIN_FILE', __FILE__ );
require_once EQCONNECT_DIR . 'admin/eqcn_admin.php';
require_once EQCONNECT_DIR . 'public/eqcn_public.php';
require_once EQCONNECT_DIR . 'include/sendmail/sendmail.php';
function eqcn_load_lang() {
load_plugin_textdomain( 'eqconnect', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
add_action( 'init', 'eqcn_load_lang' );