-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhogan-image.php
45 lines (40 loc) · 1.17 KB
/
hogan-image.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
<?php
/**
* Plugin Name: Hogan Module: Image
* Plugin URI: https://github.com/dekodeinteraktiv/hogan-image
* GitHub Plugin URI: https://github.com/dekodeinteraktiv/hogan-image
* Description: Image Module for Hogan.
* Version: 1.2.3
* 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-image
* Domain Path: /languages/
*
* @package Hogan
* @author Dekode
*/
declare( strict_types = 1 );
namespace Dekode\Hogan\Image;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
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-image', 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-image.php';
$core->register_module( new \Dekode\Hogan\Image() );
}