-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhogan-links.php
47 lines (42 loc) · 1.26 KB
/
hogan-links.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: Links
* Plugin URI: https://github.com/dekodeinteraktiv/hogan-links
* GitHub Plugin URI: https://github.com/dekodeinteraktiv/hogan-links
* Description: Links Module for Hogan
* Version: 1.1.5
* 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-links
* Domain Path: /languages/
*
* @package Hogan
* @author Dekode
*/
declare( strict_types = 1 );
namespace Dekode\Hogan\Links;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
add_action( 'plugins_loaded', __NAMESPACE__ . '\\hogan_links_load_textdomain' );
add_action( 'hogan/include_modules', __NAMESPACE__ . '\\hogan_links_register_module', 10, 1 );
/**
* Register module text domain
*/
function hogan_links_load_textdomain() {
load_plugin_textdomain( 'hogan-links', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Register module in Hogan
*
* @param \Dekode\Hogan\Core $core Hogan Core instance.
* @return void
*/
function hogan_links_register_module( \Dekode\Hogan\Core $core ) {
require_once 'class-links.php';
require_once 'includes/helper-functions.php';
$core->register_module( new \Dekode\Hogan\Links() );
}