Files
SIGE-WEB-snapshot/ambiente-de-test/wp-content/plugins/notification/load.php

19 lines
250 B
PHP

<?php
/**
* Load file
*
* @package notification
*/
/**
* Load the main plugin file.
*/
require_once __DIR__ . '/notification.php';
/**
* Initialize early.
*/
add_action( 'init', function() {
Notification::init( __FILE__ )->init();
}, 4 );