-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwp-todo.php
52 lines (46 loc) · 1.6 KB
/
wp-todo.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
51
52
<?php
/**
* @package wptodo
*/
/*
Plugin Name: WP To Do
Plugin URI: https://sandalia.com.bd/apps
Description: A full featured plugin for creating and managing a "to do" list.
Version:1.3.0
Author: Delower
Author URI: https://sandalia.com.bd/apps
License: GPLv2 or later
Text Domain: wptodo
*/
/*
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 2
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Copyright (C) 2018 delower.
*/
defined('ABSPATH') or die('Hey, What are you doing here? You Silly Man!');
if(file_exists(dirname(__FILE__).'/vendor/autoload.php')){
require_once dirname(__FILE__).'/vendor/autoload.php';
}
//activate plugin
function activate_wptodo(){
\Inc\Base\Activate::activate();
}
register_activation_hook( __FILE__, 'activate_wptodo' );
//deactivate plugin
function deactivate_wptodo(){
\Inc\Base\Deactivate::deactivate();
}
register_deactivation_hook( __FILE__, 'deactivate_wptodo' );
//instantiate classes
if( class_exists( 'Inc\\Init' ) ){
\Inc\Init::register_services();
}