<?php

/**
 * The plugin bootstrap file
 *
 * This file is read by WordPress to generate the plugin information in the plugin
 * admin area. This file also includes all of the dependencies used by the plugin,
 * registers the activation and deactivation functions, and defines a function
 * that starts the plugin.
 *
 * @link              http://gianmr.com/
 * @since             1.0.0
 * @package           Kentooz_Socializer
 *
 * @wordpress-plugin
 * Plugin Name:       kentooz socializer
 * Plugin URI:        http://www.bostheme.com/kentooz-socializer/
 * Description:       All in one solutions social network plugin for kentooz customers.
 * Version:           1.0.0
 * Author:            Gian Mokhammad Ramadhan
 * Author URI:        http://gianmr.com/
 * License:           GPL-2.0+
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:       kentooz-socializer
 * Domain Path:       /languages
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

/**
 * The code that runs during plugin activation.
 * This action is documented in includes/class-kentooz-socializer-activator.php
 */
function activate_kentooz_socializer() {
	require_once plugin_dir_path( __FILE__ ) . 'includes/class-kentooz-socializer-activator.php';
	Kentooz_Socializer_Activator::activate();
}

/**
 * The code that runs during plugin deactivation.
 * This action is documented in includes/class-kentooz-socializer-deactivator.php
 */
function deactivate_kentooz_socializer() {
	require_once plugin_dir_path( __FILE__ ) . 'includes/class-kentooz-socializer-deactivator.php';
	Kentooz_Socializer_Deactivator::deactivate();
}

register_activation_hook( __FILE__, 'activate_kentooz_socializer' );
register_deactivation_hook( __FILE__, 'deactivate_kentooz_socializer' );

/**
 * The core plugin class that is used to define internationalization,
 * admin-specific hooks, and public-facing site hooks.
 */
require plugin_dir_path( __FILE__ ) . 'includes/class-kentooz-socializer.php';

/**
 * Automatic Update With Self Hosting
 * http://w-shadow.com/blog/2010/09/02/automatic-updates-for-any-plugin/
 */
require plugin_dir_path( __FILE__ ) . 'update/plugin-update-checker.php';
$MyUpdateChecker = PucFactory::buildUpdateChecker(
    'http://www.kentooz.com/files/kentooz-socializer/generatejsonautoupdatesocializer.json',
    __FILE__,
    'kentooz-socializer'
);

/**
 * Begins execution of the plugin.
 *
 * Since everything within the plugin is registered via hooks,
 * then kicking off the plugin from this point in the file does
 * not affect the page life cycle.
 *
 * @since    1.0.0
 */
function run_kentooz_socializer() {

	$plugin = new Kentooz_Socializer();
	$plugin->run();

}
run_kentooz_socializer();
