PHP Classes

File: spartaz-music.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Spartaz Music   spartaz-music.php   Download  
File: spartaz-music.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Spartaz Music
WordPress music player plugin
Author: By
Last change:
Date: 1 year ago
Size: 714 bytes
 

Contents

Class file image Download
<?php

/**
 * Plugin Name: Spartaz Music
 * Plugin URI: https://www.spartazofficial.com.ng
 * Author: Adeleye Ayodeji
 * Author URI: https://www.adeleyeayodeji.com
 * Description: This plugin is for the Spartaz Music website
 * Version: 0.1.1
 * License: GPL-2.0+
 * License URL: http://www.gnu.org/licenses/gpl-2.0.txt
 * text-domain: spartaz-music
 */

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

//path
define('SPARTAZ_MUSIC_PATH', plugin_dir_path(__FILE__));
define('SPARTAZ_MUSIC_URL', plugin_dir_url(__FILE__));
define('SPARTAZ_MUSIC_VERSION', '0.1.0');
// Include the main class
require_once plugin_dir_path(__FILE__) . 'includes/class-spartaz-music.php';