-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtexteller.php
More file actions
34 lines (30 loc) · 813 Bytes
/
texteller.php
File metadata and controls
34 lines (30 loc) · 813 Bytes
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
<?php
/*
* Plugin Name: Texteller
* Plugin URI: https://www.texteller.com/
Description: An all-in-one text message integration solution for WordPress and popular third-party plugins, supporting multiple SMS and messaging gateways.
* Version: 1.3.0
* Author: Yashar Hosseinpour
* Text Domain: texteller
* Requires at least: 5.3
* Tested up to: 6.0
* Requires PHP: 7.4
* WC requires at least: 6.1
* WC tested up to: 6.8.1
*/
namespace Texteller;
if (!defined("ABSPATH")) {
exit();
} // Exit if accessed directly
// Define TLR_PLUGIN_FILE.
if (!defined("TLR_PLUGIN_FILE")) {
define("TLR_PLUGIN_FILE", __FILE__);
}
if (!class_exists("Texteller\Texteller")) {
require_once dirname(__FILE__) . "/includes/class-texteller.php";
}
function TLR(): void
{
Texteller::getInstance();
}
TLR();