PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
wp-rocket
/
inc
/
classes
/
admin
/
deactivation
<?php namespace WP_Rocket\Admin\Deactivation; use WP_Rocket\Abstract_Render; defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); /** * Handles rendering of deactivation intent form on plugins page * * @since 3.0 * @author Remy Perona */ class Render extends Abstract_Render { /** * Renders Deactivation intent form * * @since 3.0 * @author Remy Perona * * @return void */ public function render_form() { $args = [ 'deactivation_url' => wp_nonce_url( 'plugins.php?action=deactivate&plugin=' . rawurlencode( 'wp-rocket/wp-rocket.php' ), 'deactivate-plugin_wp-rocket/wp-rocket.php' ), ]; echo $this->generate( 'form', $args ); } }
[+]
..
[-] class-deactivation-intent.php
[edit]
[-] class-render.php
[edit]