-
Notifications
You must be signed in to change notification settings - Fork 0
/
dss-hogan-downloads.php
47 lines (41 loc) · 1.23 KB
/
dss-hogan-downloads.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: DSS Hogan Module: Downloads
* Plugin URI: https://github.com/dss-web/dss-hogan-downloads
* GitHub Plugin URI: https://github.com/dss-web/dss-hogan-downloads
* Description: DSS Download Module for Hogan.
* Version: 2.0.5
* Author: Dekode
* Author URI: https://dekode.no
* License: GPL-3.0
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
*
* Text Domain: dss-hogan-downloads
* Domain Path: /languages/
*
* @package Hogan
* @author Dekode
*/
declare( strict_types = 1 );
namespace Dekode\DSS\Hogan\Downloads;
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( 'dss-hogan-downloads', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Register module in Hogan
*
* @param \Dekode\Hogan\Core $core Hogan Core instance.
* @return void
*/
function hogan_register_module( \Dekode\Hogan\Core $core ) {
require_once 'class-dss-downloads.php';
$core->register_module( new \Dekode\Hogan\DSS_Downloads() );
}