-
Notifications
You must be signed in to change notification settings - Fork 13
/
jm-twitter-cards.php
50 lines (42 loc) · 1.58 KB
/
jm-twitter-cards.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
40
41
42
43
44
45
46
47
48
49
50
<?php
/*
Plugin Name: JM Twitter Cards
Plugin URI: https://www.julien-maury.dev
Description: Meant to help users to implement and customize Twitter Cards easily
Author: Julien Maury
Author URI: https://www.julien-maury.dev
Version: 12.0.1
License: GPL2++
JM Twitter Cards Plugin
Copyright (C) 2015-2022, Julien Maury
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
defined('ABSPATH') || die('No direct load !');
define('JM_TC_DIR', plugin_dir_path(__FILE__));
define('JM_TC_URL', plugin_dir_url(__FILE__));
define('JM_TC_VERSION', '12.0.1');
define('JM_TC_DIR_VIEWS', JM_TC_DIR . "admin/views/");
define('JM_TC_DIR_VIEWS_SETTINGS', JM_TC_DIR_VIEWS . "settings/");
define('JM_TC_BASENAME', plugin_basename(__FILE__));
define('JM_TC_LANG_DIR', basename(rtrim(dirname(__FILE__), '/')) . '/languages');
require JM_TC_DIR . 'includes/App.php';
if (defined('WP_CLI') && WP_CLI) {
require JM_TC_DIR . 'cli/cli.php';
}
/**
* @since 10.0.0
*/
add_action('plugins_loaded', 'jm_tc_run');
function jm_tc_run()
{
(new TokenToMe\TwitterCards\App())->run();
}