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