felixarntz/wp-plugin-contracts

View on GitHub
src/Activatable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Interface Felix_Arntz\WP_Plugin_Contracts\Activatable
 *
 * @package Felix_Arntz\WP_Plugin_Contracts
 * @license GNU General Public License, version 2
 * @link    https://github.com/felixarntz/wp-plugin-contracts
 */

namespace Felix_Arntz\WP_Plugin_Contracts;

/**
 * Interface for a WordPress plugin that can be activated.
 *
 * @since 1.0.0
 */
interface Activatable {

    /**
     * Runs the activation routine.
     *
     * @since 1.0.0
     *
     * @param bool $network_wide Optional. Whether the activation routine should run for the entire network.
     */
    public function activate( bool $network_wide = false );
}