forked from ThemeFuse/Unyson-Events-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hooks.php
75 lines (61 loc) · 2.01 KB
/
hooks.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php if ( ! defined( 'FW' ) ) {
die( 'Forbidden' );
}
/**
* Replace the content of the current template with the content of event view
*
* @param string $the_content
*
* @return string
*/
function _filter_fw_ext_events_the_content( $the_content ) {
/**
* @var FW_Extension_Events $events
*/
$events = fw()->extensions->get( 'events' );
return fw_render_view( $events->locate_view_path( 'content' ), array( 'the_content' => $the_content ) );
}
/**
* Select custom page template on frontend
*
* @internal
*
* @param string $template
*
* @return string
*/
function _filter_fw_ext_events_template_include( $template ) {
/**
* @var FW_Extension_Events $events
*/
$events = fw()->extensions->get( 'events' );
if ( is_singular( $events->get_post_type_name() ) ) {
if ( preg_match( '/single-' . '.*\.php/i', basename( $template ) ) === 1 ) {
return $template;
}
if ( $events->locate_view_path( 'single' ) ) {
return $events->locate_view_path( 'single' );
} else {
$portfolio_acitive = function_exists('_filter_fw_ext_portfolio_the_content');
if ($portfolio_acitive) {
add_filter( 'the_content', '_filter_fw_ext_portfolio_the_content' );
}
}
} else if ( is_tax( $events->get_taxonomy_name() ) && $events->locate_view_path( 'taxonomy' ) ) {
if ( preg_match( '/taxonomy-' . '.*\.php/i', basename( $template ) ) === 1 ) {
return $template;
}
return $events->locate_view_path( 'taxonomy' );
} else if ( is_post_type_archive( $events->get_post_type_name() ) && $events->locate_view_path( 'archive' ) ) {
if ( preg_match( '/archive-' . '.*\.php/i', basename( $template ) ) === 1 ) {
return $template;
}
return $events->locate_view_path( 'archive' );
}
return $template;
}
add_filter( 'template_include', '_filter_fw_ext_events_template_include' );
function _action_fw_ext_events_option_types_init() {
require_once dirname( __FILE__ ) . '/includes/option-types/event/class-fw-option-type-event.php';
}
add_action( 'fw_option_types_init', '_action_fw_ext_events_option_types_init' );