PHP Classes

File: download-installed-plugin.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   download-installed-plugin.php   Download  
File: download-installed-plugin.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: Yesterday
Size: 609 bytes
 

Contents

Class file image Download
<?php

/**
 * Plugin Name: Download Installed Plugin
 * Plugin URI: https://www.biggidroid.com/
 * Description: Download Installed Plugin
 * Author: Biggidroid
 * Author URI: https://www.biggidroid.com/
 * Text Domain: download-installed-plugin
 * Domain Path: /languages
 * Version: 0.1.0
 *
 * @package Download_Installed_Plugin
 */

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

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

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