Plugin Directory

Changeset 2452823


Ignore:
Timestamp:
01/08/2021 07:59:05 PM (5 years ago)
Author:
h71
Message:

version-1.0.5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • super-reactions/trunk/super-reactions.php

    r2452811 r2452823  
    2424require_once 'vendor/autoload.php';
    2525
     26register_activation_hook( __FILE__, 'srea_activation_hook_callback' );
     27
     28function srea_activation_hook_callback() {
     29    \SREA\Includes\Init::activate();
     30}
     31
     32register_deactivation_hook( __FILE__, 'srea_deactivation_hook_callback' );
     33
     34function srea_deactivation_hook_callback() {
     35    \SREA\Includes\Init::deactivate();
     36}
     37
    2638Admin::instance();
    2739Assets::instance();
Note: See TracChangeset for help on using the changeset viewer.