Current path: home/webdevt/www/wdp/wp-content/plugins/wp-debugging/vendor/norcross/debug-quick-look/includes/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/wp-debugging/vendor/norcross/debug-quick-look
<?php
/**
* Our activation call
*
* @package DebugQuickLook
*/
// Declare our namespace.
namespace DebugQuickLook\Activate;
// Set our alias items.
use DebugQuickLook as Core;
use DebugQuickLook\Helpers as Helpers;
/**
* Our inital setup function when activated.
*
* @return void
*/
function activate() {
// Include our action so that we may add to this later.
do_action( Core\HOOK_PREFIX . 'activate_process' );
// And flush our rewrite rules.
flush_rewrite_rules();
}
register_activation_hook( Core\FILE, __NAMESPACE__ . '\activate' );