Passed
Push — master ( c8dbb2...85d0d8 )
by Virginia
03:08
created

hooks.php ➔ lsx_banner_inner_top()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * LSX functions and definitions - Hooks.
4
 *
5
 * @package    lsx
6
 * @subpackage hooks
7
 */
8
9
if ( ! defined( 'ABSPATH' ) ) {
10
	exit;
11
}
12
13
/**
14
 * HTML <body> hooks
15
 *
16
 * $lsx_supports[] = 'body';
17
 */
18
19
function lsx_body_top() {
20
	do_action( 'lsx_body_top' );
21
}
22
23
function lsx_body_bottom() {
24
	do_action( 'lsx_body_bottom' );
25
}
26
27
/**
28
 * HTML <head> hooks
29
 *
30
 * $lsx_supports[] = 'head';
31
 */
32
33
function lsx_head_top() {
34
	do_action( 'lsx_head_top' );
35
}
36
37
function lsx_head_bottom() {
38
	do_action( 'lsx_head_bottom' );
39
}
40
41
/**
42
 * Semantic <header> hooks
43
 *
44
 * $lsx_supports[] = 'header';
45
 */
46
47
function lsx_header_before() {
48
	do_action( 'lsx_header_before' );
49
}
50
51
function lsx_header_after() {
52
	do_action( 'lsx_header_after' );
53
}
54
55
function lsx_header_top() {
56
	do_action( 'lsx_header_top' );
57
}
58
59
function lsx_header_bottom() {
60
	do_action( 'lsx_header_bottom' );
61
}
62
63
function lsx_nav_before() {
64
	do_action( 'lsx_nav_before' );
65
}
66
67
function lsx_nav_after() {
68
	do_action( 'lsx_nav_after' );
69
}
70
71
/**
72
 * Semantic <content> hooks
73
 *
74
 * $lsx_supports[] = 'banner';
75
 */
76
77
function lsx_banner_content() {
78
	do_action( 'lsx_banner_content' );
79
}
80
81
function lsx_banner_inner_top() {
82
	do_action( 'lsx_banner_inner_top' );
83
}
84
85
function lsx_banner_inner_bottom() {
86
	do_action( 'lsx_banner_inner_bottom' );
87
}
88
89
/**
90
 * Semantic <content> hooks
91
 *
92
 * $lsx_supports[] = 'global_header';
93
 */
94
95
function lsx_global_header_inner_bottom() {
96
	do_action( 'lsx_global_header_inner_bottom' );
97
}
98
99
/**
100
 * Semantic <content> hooks
101
 *
102
 * $lsx_supports[] = 'content';
103
 */
104
105
function lsx_content_wrap_before() {
106
	do_action( 'lsx_content_wrap_before' );
107
}
108
109
function lsx_content_wrap_after() {
110
	do_action( 'lsx_content_wrap_after' );
111
}
112
113
function lsx_content_before() {
114
	do_action( 'lsx_content_before' );
115
}
116
117
function lsx_content_after() {
118
	do_action( 'lsx_content_after' );
119
}
120
121
function lsx_content_top() {
122
	do_action( 'lsx_content_top' );
123
}
124
125
function lsx_content_bottom() {
126
	do_action( 'lsx_content_bottom' );
127
}
128
129
function lsx_content_post_tags() {
130
	do_action( 'lsx_content_post_tags' );
131
}
132
133
function lsx_content_sharing() {
134
	do_action( 'lsx_content_sharing' );
135
}
136
137
/**
138
 * Semantic <entry> hooks
139
 *
140
 * $lsx_supports[] = 'entry';
141
 */
142
143
function lsx_entry_before() {
144
	do_action( 'lsx_entry_before' );
145
}
146
147
function lsx_entry_after() {
148
	do_action( 'lsx_entry_after' );
149
}
150
151
function lsx_entry_top() {
152
	do_action( 'lsx_entry_top' );
153
}
154
155
function lsx_entry_bottom() {
156
	do_action( 'lsx_entry_bottom' );
157
}
158
159
/**
160
 * Widget Semantic <entry> hooks
161
 *
162
 * $lsx_supports[] = 'entry';
163
 */
164
165
function lsx_widget_entry_before() {
166
	do_action( 'lsx_widget_entry_before' );
167
}
168
169
function lsx_widget_entry_after() {
170
	do_action( 'lsx_widget_entry_after' );
171
}
172
173
function lsx_widget_entry_top() {
174
	do_action( 'lsx_widget_entry_top' );
175
}
176
177
function lsx_widget_entry_bottom() {
178
	do_action( 'lsx_widget_entry_bottom' );
179
}
180
181
function lsx_widget_entry_content_top() {
182
	do_action( 'lsx_widget_entry_content_top' );
183
}
184
185
function lsx_widget_entry_content_bottom() {
186
	do_action( 'lsx_widget_entry_content_bottom' );
187
}
188
189
/**
190
 * Comments block hooks
191
 *
192
 * $lsx_supports[] = 'comments';
193
 */
194
195
function lsx_comments_before() {
196
	do_action( 'lsx_comments_before' );
197
}
198
199
function lsx_comments_after() {
200
	do_action( 'lsx_comments_after' );
201
}
202
203
/**
204
 * Semantic <sidebar> hooks
205
 *
206
 * $lsx_supports[] = 'sidebar';
207
 */
208
209
function lsx_sidebars_before() {
210
	do_action( 'lsx_sidebars_before' );
211
}
212
213
function lsx_sidebars_after() {
214
	do_action( 'lsx_sidebars_after' );
215
}
216
217
function lsx_sidebar_top() {
218
	do_action( 'lsx_sidebar_top' );
219
}
220
221
function lsx_sidebar_bottom() {
222
	do_action( 'lsx_sidebar_bottom' );
223
}
224
225
/**
226
 * Semantic <footer> hooks
227
 *
228
 * $lsx_supports[] = 'footer';
229
 */
230
231
function lsx_footer_before() {
232
	do_action( 'lsx_footer_before' );
233
}
234
235
function lsx_footer_after() {
236
	do_action( 'lsx_footer_after' );
237
}
238
239
function lsx_footer_top() {
240
	do_action( 'lsx_footer_top' );
241
}
242
243
function lsx_footer_bottom() {
244
	do_action( 'lsx_footer_bottom' );
245
}
246