-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhogan-banner.php
47 lines (41 loc) · 1.22 KB
/
hogan-banner.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* Plugin Name: Hogan Module: Banner
* Plugin URI: https://github.com/dekodeinteraktiv/hogan-banner
* GitHub Plugin URI: https://github.com/dekodeinteraktiv/hogan-banner
* Description: Banner Module for Hogan.
* Version: 2.4.1
* Author: Dekode
* Author URI: https://dekode.no
* License: GPL-3.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
*
* Text Domain: hogan-banner
* Domain Path: /languages/
*
* @package Hogan
* @author Dekode
*/
declare( strict_types=1 );
namespace Dekode\Hogan\Banner;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
define( 'HOGAN_BANNER_VERSION', '2.4.1' );
add_action( 'plugins_loaded', __NAMESPACE__ . '\\hogan_load_textdomain' );
add_action( 'hogan/include_modules', __NAMESPACE__ . '\\hogan_register_module' );
/**
* Register module text domain
*/
function hogan_load_textdomain() {
\load_plugin_textdomain( 'hogan-banner', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Register module in Hogan
*
* @param \Dekode\Hogan\Core $core Hogan Core instance.
*/
function hogan_register_module( \Dekode\Hogan\Core $core ) {
require_once 'class-banner.php';
$core->register_module( new \Dekode\Hogan\Banner() );
}