Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
betrayful
/
wp
/
wp-content
/
plugins
/
yith-woocommerce-compare
/
plugin-fw
:
yit-plugin-registration-hook.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Functions for plugin registration hook. * * @package YITH\PluginFramework */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. if ( ! function_exists( 'yith_plugin_registration_hook' ) ) { /** * Register the plugin when activated. * Please note: use this function through register_activation_hook. * * @use activate_PLUGINNAME hook */ function yith_plugin_registration_hook() { $hook = str_replace( 'activate_', '', current_filter() ); $option = get_option( 'yit_recently_activated', array() ); $option[] = $hook; update_option( 'yit_recently_activated', $option ); } }