-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?php | ||
/** | ||
* @package AlecadddPlugin | ||
*/ | ||
/* | ||
Plugin Name: Alecaddd Plugin | ||
Plugin URI: http://alecaddd.com/plugin | ||
Description: This is my first attempt on writing a custom Plugin for this amazing tutorial series. | ||
Version: 1.0.0 | ||
Author: Alessandro "Alecaddd" Castellani | ||
Author URI: http://alecaddd.com | ||
License: GPLv2 or later | ||
Text Domain: alecaddd-plugin | ||
*/ | ||
|
||
/* | ||
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 2005-2015 Automattic, Inc. | ||
*/ | ||
|
||
// If this file is called firectly, abort!!! | ||
defined( 'ABSPATH' ) or die( 'Hey, what are you doing here? You silly human!' ); | ||
|
||
// Require once the Composer Autoload | ||
if ( file_exists( dirname( __FILE__ ) . '/vendor/autoload.php' ) ) { | ||
require_once dirname( __FILE__ ) . '/vendor/autoload.php'; | ||
} | ||
|
||
/** | ||
* The code that runs during plugin activation | ||
*/ | ||
function activate_alecaddd_plugin() { | ||
Inc\Base\Activate::activate(); | ||
} | ||
register_activation_hook( __FILE__, 'activate_alecaddd_plugin' ); | ||
|
||
/** | ||
* The code that runs during plugin deactivation | ||
*/ | ||
function deactivate_alecaddd_plugin() { | ||
Inc\Base\Deactivate::deactivate(); | ||
} | ||
register_deactivation_hook( __FILE__, 'deactivate_alecaddd_plugin' ); | ||
|
||
/** | ||
* Initialize all the core classes of the plugin | ||
*/ | ||
if ( class_exists( 'Inc\\Init' ) ) { | ||
Inc\Init::registerServices(); | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.