1
|
|
|
<?php |
2
|
|
|
namespace GV; |
3
|
|
|
|
4
|
|
|
/** If this file is called directly, abort. */ |
5
|
|
|
if ( ! defined( 'GRAVITYVIEW_DIR' ) ) { |
6
|
|
|
die(); |
7
|
|
|
} |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* Load up the Gamajo Template Loader. |
11
|
|
|
* |
12
|
|
|
* @see https://github.com/GaryJones/Gamajo-Template-Loader |
13
|
|
|
*/ |
14
|
|
|
if ( ! class_exists( '\GV\Gamajo_Template_Loader' ) ) { |
15
|
|
|
require gravityview()->plugin->dir( 'future/lib/class-gamajo-template-loader.php' ); |
16
|
|
|
} |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Loads legacy override templates from the theme. |
20
|
|
|
* |
21
|
|
|
* Makes sure they work by setting up context, etc. |
22
|
|
|
*/ |
23
|
|
|
class Legacy_Override_Template extends \GV\Gamajo_Template_Loader { |
24
|
|
|
/** |
25
|
|
|
* Prefix for filter names. |
26
|
|
|
* @var string |
27
|
|
|
*/ |
28
|
|
|
protected $filter_prefix = 'gravityview'; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Directory name where custom templates for this plugin should be found in the theme. |
32
|
|
|
* @var string |
33
|
|
|
*/ |
34
|
|
|
protected $theme_template_directory = 'gravityview'; |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* @var \GV\View The view we're working with. |
38
|
|
|
*/ |
39
|
|
|
private $view; |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* @var \GV\Entry The entry we're working with. |
43
|
|
|
*/ |
44
|
|
|
private $entry; |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* Catch deprecated template loads. |
48
|
|
|
* |
49
|
|
|
* @param \GV\View $view The View. |
50
|
|
|
* @param \GV\Entry $entry The Entry. |
51
|
|
|
* @param \GV\Field $field The Field. |
52
|
|
|
* @param \GV\Request $request The request. |
53
|
|
|
* |
54
|
|
|
* @return void |
|
|
|
|
55
|
|
|
*/ |
56
|
37 |
|
public function __construct( \GV\View $view, \GV\Entry $entry = null, \GV\Field $field = null, \GV\Request $request = null ) { |
|
|
|
|
57
|
37 |
|
add_filter( $this->filter_prefix . '_get_template_part', array( $this, 'add_id_specific_templates' ), 10, 3 ); |
58
|
|
|
|
59
|
37 |
|
$this->view = $view; |
60
|
37 |
|
$this->entry = $entry; |
61
|
|
|
|
62
|
37 |
|
$this->plugin_directory = gravityview()->plugin->dir(); |
63
|
37 |
|
$this->plugin_template_directory = 'templates/deprecated/'; |
64
|
37 |
|
} |
65
|
|
|
|
66
|
6 |
|
public function __destruct() { |
67
|
6 |
|
remove_filter( $this->filter_prefix . '_get_template_part', array( $this, 'add_id_specific_templates' ) ); |
68
|
6 |
|
} |
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* @inheritdoc |
72
|
|
|
* @see Gamajo_Template_Loader::locate_template() |
73
|
|
|
* @return null|string NULL: Template not found; String: path to template |
74
|
|
|
*/ |
75
|
37 |
|
public function locate_template( $template_names, $load = false, $require_once = false ) { |
76
|
37 |
|
return parent::locate_template( $template_names, false, false ); |
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
/** |
80
|
|
|
* Enable overrides of GravityView templates on a granular basis |
81
|
|
|
* |
82
|
|
|
* The loading order is: |
83
|
|
|
* |
84
|
|
|
* - view-[View ID]-table-footer.php |
85
|
|
|
* - form-[Form ID]-table-footer.php |
86
|
|
|
* - page-[ID of post or page where view is embedded]-table-footer.php |
87
|
|
|
* - table-footer.php |
88
|
|
|
* |
89
|
|
|
* @see Gamajo_Template_Loader::get_template_file_names() Where the filter is |
90
|
|
|
* @param array $templates Existing list of templates. |
91
|
|
|
* @param string $slug Name of the template base, example: `table`, `list`, `datatables`, `map` |
92
|
|
|
* @param string $name Name of the template part, example: `body`, `footer`, `head`, `single` |
93
|
|
|
* |
94
|
|
|
* @return array $templates Modified template array, merged with existing $templates values |
95
|
|
|
*/ |
96
|
37 |
|
public function add_id_specific_templates( $templates, $slug, $name ) { |
97
|
|
|
|
98
|
37 |
|
$additional = array(); |
99
|
|
|
|
100
|
|
|
// form-19-table-body.php |
101
|
37 |
|
$additional[] = sprintf( 'form-%d-%s-%s.php', $this->view->form ? $this->view->form->ID : 0, $slug, $name ); |
102
|
|
|
|
103
|
|
|
// view-3-table-body.php |
104
|
37 |
|
$additional[] = sprintf( 'view-%d-%s-%s.php', $this->view->ID, $slug, $name ); |
|
|
|
|
105
|
|
|
|
106
|
37 |
|
global $post; |
107
|
37 |
|
if ( $post ) { |
108
|
|
|
// page-19-table-body.php |
109
|
15 |
|
$additional[] = sprintf( 'page-%d-%s-%s.php', $post->ID, $slug, $name ); |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
// Combine with existing table-body.php and table.php |
113
|
37 |
|
$templates = array_merge( $additional, $templates ); |
114
|
|
|
|
115
|
37 |
|
return $templates; |
116
|
|
|
} |
117
|
|
|
|
118
|
|
|
/** |
119
|
|
|
* Setup legacy rendering. |
120
|
|
|
* |
121
|
|
|
* @param string $slug The slug. |
122
|
|
|
* |
123
|
|
|
* @return string The output. |
124
|
|
|
*/ |
125
|
2 |
|
public function render( $slug ) { |
126
|
|
|
add_action( 'gravityview/template/after', $view_id_output = function( $context ) { |
127
|
|
|
printf( '<input type="hidden" class="gravityview-view-id" value="%d">', $context->view->ID ); |
128
|
2 |
|
} ); |
129
|
|
|
|
130
|
2 |
|
ob_start(); |
131
|
|
|
|
132
|
2 |
|
$request = new Mock_Request(); |
133
|
2 |
|
$request->returns['is_view'] = $this->view; |
134
|
|
|
|
135
|
|
|
/** |
136
|
|
|
* You got one shot. One opportunity. To render all the widgets you have ever wanted. |
137
|
|
|
* |
138
|
|
|
* Since we're overriding the singleton we need to remove the widget actions since they can only |
139
|
|
|
* be called once in a request (did_action/do_action mutex). |
140
|
|
|
* |
141
|
|
|
* Oh, and Mom's spaghetti. |
142
|
|
|
*/ |
143
|
2 |
|
global $wp_filter; |
144
|
2 |
|
foreach ( array( 'gravityview_before', 'gravityview_after' ) as $hook ) { |
145
|
|
|
/** WordPress 4.6 and lower compatibility, when WP_Hook classes were still absent. */ |
146
|
2 |
|
if ( is_array( $wp_filter[ $hook ] ) ) { |
147
|
|
|
if ( ! empty( $wp_filter[ $hook ][10] ) ) { |
148
|
|
|
foreach ( $wp_filter[ $hook ][10] as $function_key => $callback ) { |
149
|
|
|
if ( strpos( $function_key, 'render_widget_hooks' ) ) { |
150
|
|
|
unset( $wp_filter[ $hook ][10][ $function_key ] ); |
151
|
|
|
} |
152
|
|
|
} |
153
|
|
|
} |
154
|
|
|
} else { |
155
|
2 |
|
foreach ( $wp_filter[ $hook ]->callbacks[10] as $function_key => $callback ) { |
156
|
2 |
|
if ( strpos( $function_key, 'render_widget_hooks' ) ) { |
157
|
1 |
|
unset( $wp_filter[ $hook ]->callbacks[10][ $function_key ] ); |
158
|
|
|
} |
159
|
|
|
} |
160
|
|
|
} |
161
|
|
|
} |
162
|
|
|
|
163
|
|
|
/** |
164
|
|
|
* Single entry view. |
165
|
|
|
*/ |
166
|
2 |
|
if ( $this->entry ) { |
167
|
|
|
|
168
|
|
|
$request->returns['is_entry'] = $this->entry; |
169
|
|
|
|
170
|
|
|
global $post; |
171
|
|
|
|
172
|
|
|
$entries = new Entry_Collection(); |
173
|
|
|
$entries->add( $this->entry ); |
174
|
|
|
|
175
|
|
|
\GV\Mocks\Legacy_Context::push( array( |
176
|
|
|
'view' => $this->view, |
177
|
|
|
'entry' => $this->entry, |
178
|
|
|
'entries' => $entries, |
179
|
|
|
'request' => $request, |
180
|
|
|
'fields' => $this->view->fields->by_visible( $this->view ), |
181
|
|
|
'in_the_loop' => true, |
182
|
|
|
) ); |
183
|
|
|
|
184
|
|
|
\GravityView_View::getInstance()->setTemplatePartSlug( $slug ); |
185
|
|
|
\GravityView_View::getInstance()->setTemplatePartName( 'single' ); |
186
|
|
|
|
187
|
|
|
\GravityView_View::getInstance()->_include( $this->get_template_part( $slug, 'single' ) ); |
188
|
|
|
|
189
|
|
|
Mocks\Legacy_Context::pop(); |
190
|
|
|
|
191
|
|
|
/** |
192
|
|
|
* Directory view. |
193
|
|
|
*/ |
194
|
|
|
} else { |
195
|
2 |
|
$entries = $this->view->get_entries( $request ); |
196
|
|
|
|
197
|
|
|
/** |
198
|
|
|
* Remove multiple sorting before calling legacy filters. |
199
|
|
|
* This allows us to fake it till we make it. |
200
|
|
|
*/ |
201
|
2 |
|
$parameters = $this->view->settings->as_atts(); |
|
|
|
|
202
|
2 |
|
if ( ! empty( $parameters['sort_field'] ) && is_array( $parameters['sort_field'] ) ) { |
203
|
|
|
$has_multisort = true; |
204
|
|
|
$parameters['sort_field'] = reset( $parameters['sort_field'] ); |
205
|
|
|
if ( ! empty( $parameters['sort_direction'] ) && is_array( $parameters['sort_direction'] ) ) { |
206
|
|
|
$parameters['sort_direction'] = reset( $parameters['sort_direction'] ); |
207
|
|
|
} |
208
|
|
|
} |
209
|
|
|
|
210
|
2 |
|
$parameters = \GravityView_frontend::get_view_entries_parameters( $parameters, $this->view->form->ID ); |
211
|
|
|
|
212
|
2 |
|
global $post; |
213
|
|
|
|
214
|
2 |
|
add_action( 'gravityview_before', array( \GravityView_View::getInstance(), 'render_widget_hooks' ) ); |
215
|
2 |
|
add_action( 'gravityview_after', array( \GravityView_View::getInstance(), 'render_widget_hooks' ) ); |
216
|
|
|
|
217
|
2 |
|
foreach ( array( 'header', 'body', 'footer' ) as $part ) { |
218
|
2 |
|
\GV\Mocks\Legacy_Context::push( array_merge( array( |
219
|
2 |
|
'view' => $this->view, |
220
|
2 |
|
'entries' => $entries, |
221
|
2 |
|
'request' => $request, |
222
|
2 |
|
'fields' => $this->view->fields->by_visible( $this->view ), |
223
|
|
|
'in_the_loop' => true, |
224
|
|
|
), empty( $parameters ) ? array() : array( |
225
|
2 |
|
'paging' => $parameters['paging'], |
226
|
2 |
|
'sorting' => $parameters['sorting'], |
227
|
2 |
|
), $post ? array( |
228
|
2 |
|
'post' => $post, |
229
|
2 |
|
) : array() ) ); |
230
|
|
|
|
231
|
2 |
|
\GravityView_View::getInstance()->setTemplatePartSlug( $slug ); |
232
|
|
|
|
233
|
2 |
|
\GravityView_View::getInstance()->setTemplatePartName( $part ); |
234
|
|
|
|
235
|
2 |
|
\GravityView_View::getInstance()->_include( $this->get_template_part( $slug, $part ) ); |
236
|
|
|
|
237
|
2 |
|
Mocks\Legacy_Context::pop(); |
238
|
|
|
} |
239
|
|
|
} |
240
|
|
|
|
241
|
2 |
|
remove_action( 'gravityview/template/after', $view_id_output ); |
242
|
|
|
|
243
|
2 |
|
return ob_get_clean(); |
244
|
|
|
} |
245
|
|
|
} |
246
|
|
|
|
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.