PHP Classes

File: cool-kids-network-wp.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Cool Kids Network For WP Plugin   cool-kids-network-wp.php   Download  
File: cool-kids-network-wp.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Cool Kids Network For WP Plugin
WordPress plugin to manage users with roles
Author: By
Last change:
Date: 1 month ago
Size: 1,404 bytes
 

Contents

Class file image Download
<?php

/**
 * Plugin Name: Cool Kids Network
 * Plugin URI: https://www.adeleyeayodeji.com/
 * Description: A WordPress user management system with role-based access.
 * Author: Adeleye Ayodeji
 * Author URI: https://www.adeleyeayodeji.com/
 * Text Domain: cool-kids-network-wp
 * Version: 0.1.0
 * License: GPLv2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 *
 * @package Cool_Kids_Network_WP
 * @category Plugin
 * @author Adeleye Ayodeji
 * @copyright 2025 Adeleye Ayodeji
 * @license GPLv2 or later
 * @link https://www.adeleyeayodeji.com/
 */

//check for security
if (!defined('ABSPATH')) {
    exit(
"You can't access file directly");
}

//define constants
define('COOL_KIDS_NETWORK_WP_VERSION', time());
define('COOL_KIDS_NETWORK_WP_FILE', __FILE__);
define('COOL_KIDS_NETWORK_WP_DIR', __DIR__);
define('COOL_KIDS_NETWORK_WP_URL', plugin_dir_url(__FILE__));
define('COOL_KIDS_NETWORK_WP_DIR_PATH', plugin_dir_path(__FILE__));
//method prefix
define('COOL_KIDS_NETWORK_WP_PREFIX', 'wp_ckn_');
//template path
define('COOL_KIDS_NETWORK_WP_TEMPLATE_PATH', COOL_KIDS_NETWORK_WP_DIR_PATH . 'app/templates/');
//assets url
define('COOL_KIDS_NETWORK_WP_ASSETS_URL', COOL_KIDS_NETWORK_WP_URL . '/assets/');

//load the plugin
require_once __DIR__ . '/vendor/autoload.php';

//init the plugin
Cool_Kids_Network_WP\Loader::instance();