PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 3.3.6
Pods – Custom Content Types and Fields v3.3.6
trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / ui / admin / help.php
pods / ui / admin Last commit date
callouts 4 months ago upgrade 4 months ago widgets 4 months ago components-admin.php 4 months ago help-addons-row.php 4 months ago help-addons.php 4 months ago help.php 4 months ago postbox-header.php 4 months ago settings-reset.php 4 months ago settings-settings.php 4 months ago settings-tools.php 4 months ago settings.php 4 months ago setup-add.php 4 months ago setup-edit.php 4 months ago shortcode.php 4 months ago view.php 4 months ago
help.php
423 lines
1 <?php
2
3 // Don't load directly.
4 if ( ! defined( 'ABSPATH' ) ) {
5 die( '-1' );
6 }
7
8 // phpcs:ignoreFile WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
9 ?>
10 <div class="wrap pods-admin<?php echo PodsAdmin::$instance->has_horizontal_callout() ? '' : ' pods-admin--flex'; ?>">
11 <?php
12 /**
13 * Allow additional output before the container area of the Pods help screen.
14 *
15 * @since 3.1.0
16 */
17 do_action( 'pods_admin_before_help' );
18 ?>
19
20 <div class="pods-admin-container pods-admin__content-container">
21 <div id="icon-pods" class="icon32"><br /></div>
22 <h2><?php esc_html_e( 'Get help with Pods', 'pods' ); ?></h2>
23 <img src="<?php echo esc_url( PODS_URL ); ?>ui/images/pods-logo-notext-rgb-transparent.png" class="pods-leaf-watermark-right" />
24
25 <p><?php echo wp_kses_post( __( 'There are many resources available to help you learn to use Pods <a href="https://pods.io/" target="_blank" rel="noopener noreferrer">on our website</a>', 'pods') ); ?>.</p>
26 <ul class="ul-disc">
27 <li><?php echo wp_kses_post( __( 'To learn more about using Pods, see our <a href="https://docs.pods.io/" target="_blank" rel="noopener noreferrer">documentation</a> and subscribe to our <a href="https://www.youtube.com/user/podsframework/" target="_blank" rel="noopener noreferrer">YouTube Channel</a>', 'pods') ); ?>.
28
29 <li><?php echo wp_kses_post( __( 'To get help with a specific issue, you can ask in our <a href="https://wordpress.org/support/plugin/pods" target="_blank" rel="noopener noreferrer">support forums</a>, or you can join our <a href="https://support.pods.io/chat/" target="_blank" rel="noopener noreferrer">Live Community Slack Chat</a>', 'pods') ); ?>.
30
31 <li><?php echo wp_kses_post( __( 'To report <strong>bugs or request features</strong>, go to our <a href="https://github.com/pods-framework/pods/issues?sort=updated&direction=desc&state=open" target="_blank" rel="noopener noreferrer">GitHub</a>.', 'pods' ) ); ?></li>
32
33 <li><?php echo wp_kses_post( __( 'Pods is open source, so you can get into the code and submit your own fixes or features. We would love to help you contribute on our project over on our <a href="https://github.com/pods-framework/pods/blob/main/docs/CONTRIBUTING.md" target="_blank" rel="noopener noreferrer">GitHub</a>', 'pods') ); ?>.</li>
34
35 <li><?php
36 echo sprintf(
37 // translators: %1$s: The opening tag for the link; %2$s: The ending tag for the link.
38 esc_html__( 'Check out the complete list of %1$sFree and Premium add-ons%2$s to explore great features and integrations.', 'pods'),
39 '<a href="https://pods.io/plugins/" target="_blank" rel="noopener noreferrer">',
40 '</a>'
41 );
42 ?></li>
43 </ul>
44
45 <hr />
46
47 <style>
48 .pods-admin-help-info {
49 max-width: 800px;
50 }
51 .pods-admin-help-info td {
52 vertical-align: middle;
53 }
54
55 .pods-admin-help-info thead tr th:nth-child(1),
56 .pods-admin-help-info tbody tr td:nth-child(1) {
57 width: 50px;
58 }
59 .pods-admin-help-info thead tr th:nth-child(2),
60 .pods-admin-help-info tbody tr td:nth-child(2) {
61 width: 300px;
62 }
63 </style>
64
65 <?php
66 $addons = [
67 [
68 'label' => 'Pods Framework',
69 'icon' => 'https://ps.w.org/pods/assets/icon-256x256.png',
70 'links' => [
71 [
72 'label' => __( 'Download', 'pods' ),
73 'url' => 'https://downloads.wordpress.org/plugin/pods.zip',
74 ],
75 [
76 'label' => __( 'Learn More', 'pods' ),
77 'url' => 'https://wordpress.org/plugins/pods/',
78 ],
79 [
80 'label' => __( 'Support', 'pods' ),
81 'title' => __( 'Support Forums', 'pods' ),
82 'url' => 'https://wordpress.org/support/plugin/pods/',
83 ],
84 [
85 'label' => __( 'Docs', 'pods' ),
86 'title' => __( 'Documentation', 'pods' ),
87 'url' => 'https://docs.pods.io/',
88 ],
89 [
90 'label' => __( 'GitHub', 'pods' ),
91 'url' => 'https://github.com/pods-framework/pods',
92 ],
93 ],
94 ],
95 ];
96
97 pods_view( PODS_DIR . 'ui/admin/help-addons.php', compact( array_keys( get_defined_vars() ) ) );
98 ?>
99
100 <h2><?php esc_html_e( 'Official Free Add-Ons', 'pods' ); ?></h2>
101
102 <?php
103 $addons = [
104 [
105 'label' => 'Pods Beaver Themer Add-On',
106 'description' => __( 'Integrates Pods with Beaver Themer', 'pods' ),
107 'icon' => 'https://ps.w.org/pods-beaver-builder-themer-add-on/assets/icon-256x256.png',
108 'links' => [
109 [
110 'label' => __( 'Download', 'pods' ),
111 'url' => 'https://downloads.wordpress.org/plugin/pods-beaver-builder-themer-add-on.zip',
112 ],
113 [
114 'label' => __( 'Learn More', 'pods' ),
115 'url' => 'https://wordpress.org/plugins/pods-beaver-builder-themer-add-on/',
116 ],
117 [
118 'label' => __( 'Support', 'pods' ),
119 'title' => __( 'Support Forums', 'pods' ),
120 'url' => 'https://wordpress.org/support/plugin/pods-beaver-builder-themer-add-on/',
121 ],
122 [
123 'label' => __( 'Docs', 'pods' ),
124 'title' => __( 'Documentation', 'pods' ),
125 'url' => 'https://docs.pods.io/plugins/pods-beaver-themer-add-on/',
126 ],
127 [
128 'label' => __( 'GitHub', 'pods' ),
129 'url' => 'https://github.com/pods-framework/pods-beaver-builder-themer-add-on',
130 ],
131 ],
132 ],
133 [
134 'label' => 'Pods Gravity Forms Add-On',
135 'description' => __( 'Integrates Pods with Gravity Forms', 'pods' ),
136 'icon' => 'https://ps.w.org/pods-gravity-forms/assets/icon-256x256.png',
137 'links' => [
138 [
139 'label' => __( 'Download', 'pods' ),
140 'url' => 'https://downloads.wordpress.org/plugin/pods-gravity-forms.zip',
141 ],
142 [
143 'label' => __( 'Learn More', 'pods' ),
144 'url' => 'https://wordpress.org/plugins/pods-gravity-forms/',
145 ],
146 [
147 'label' => __( 'Support', 'pods' ),
148 'title' => __( 'Support Forums', 'pods' ),
149 'url' => 'https://wordpress.org/support/plugin/pods-gravity-forms/',
150 ],
151 [
152 'label' => __( 'Docs', 'pods' ),
153 'title' => __( 'Documentation', 'pods' ),
154 'url' => 'https://docs.pods.io/plugins/pods-gravity-forms-add-on/',
155 ],
156 [
157 'label' => __( 'GitHub', 'pods' ),
158 'url' => 'https://github.com/pods-framework/pods-gravity-forms',
159 ],
160 ],
161 ],
162 [
163 'label' => 'Pods Alternative Cache Add-On',
164 'description' => __( 'Speed up Pods on servers with limited object caching capabilities', 'pods' ),
165 'icon' => 'https://ps.w.org/pods-alternative-cache/assets/icon-256x256.png',
166 'links' => [
167 [
168 'label' => __( 'Download', 'pods' ),
169 'url' => 'https://downloads.wordpress.org/plugin/pods-alternative-cache.zip',
170 ],
171 [
172 'label' => __( 'Learn More', 'pods' ),
173 'url' => 'https://wordpress.org/plugins/pods-alternative-cache/',
174 ],
175 [
176 'label' => __( 'Support', 'pods' ),
177 'title' => __( 'Support Forums', 'pods' ),
178 'url' => 'https://wordpress.org/support/plugin/pods-alternative-cache/',
179 ],
180 [
181 'label' => __( 'Docs', 'pods' ),
182 'title' => __( 'Documentation', 'pods' ),
183 'url' => 'https://docs.pods.io/plugins/pods-alternative-cache/',
184 ],
185 [
186 'label' => __( 'GitHub', 'pods' ),
187 'url' => 'https://github.com/pods-framework/pods-alternative-cache',
188 ],
189 ],
190 ],
191 [
192 'label' => 'Pods SEO Add-On',
193 'description' => __( 'Integrates Pods Advanced Content Types with Yoast SEO', 'pods' ),
194 'icon' => 'https://ps.w.org/pods-seo/assets/icon-256x256.png',
195 'links' => [
196 [
197 'label' => __( 'Download', 'pods' ),
198 'url' => 'https://downloads.wordpress.org/plugin/pods-seo.zip',
199 ],
200 [
201 'label' => __( 'Learn More', 'pods' ),
202 'url' => 'https://wordpress.org/plugins/pods-seo/',
203 ],
204 [
205 'label' => __( 'Support', 'pods' ),
206 'title' => __( 'Support Forums', 'pods' ),
207 'url' => 'https://wordpress.org/support/plugin/pods-seo/',
208 ],
209 [
210 'label' => __( 'GitHub', 'pods' ),
211 'url' => 'https://github.com/pods-framework/pods-seo',
212 ],
213 ],
214 ],
215 [
216 'label' => 'Pods AJAX Views Add-On',
217 'description' => __( 'Adds new functions you can use to output template parts that load via AJAX after other page elements', 'pods' ),
218 'icon' => 'https://ps.w.org/pods-ajax-views/assets/icon-256x256.png',
219 'links' => [
220 [
221 'label' => __( 'Download', 'pods' ),
222 'url' => 'https://downloads.wordpress.org/plugin/pods-ajax-views.zip',
223 ],
224 [
225 'label' => __( 'Learn More', 'pods' ),
226 'url' => 'https://wordpress.org/plugins/pods-ajax-views/',
227 ],
228 [
229 'label' => __( 'Support', 'pods' ),
230 'title' => __( 'Support Forums', 'pods' ),
231 'url' => 'https://wordpress.org/support/plugin/pods-ajax-views/',
232 ],
233 [
234 'label' => __( 'GitHub', 'pods' ),
235 'url' => 'https://github.com/pods-framework/pods-ajax-views',
236 ],
237 ],
238 ],
239 ];
240
241 pods_view( PODS_DIR . 'ui/admin/help-addons.php', compact( array_keys( get_defined_vars() ) ) );
242 ?>
243
244 <h2><?php esc_html_e( 'Third-party Free Add-Ons', 'pods' ); ?></h2>
245
246 <?php
247 $addons = [
248 [
249 'label' => 'Paid Memberships Pro - Pods Add-On',
250 'description' => __( 'Integrates Pods with Paid Memberships Pro', 'pods' ),
251 'icon' => 'https://ps.w.org/pmpro-pods/assets/icon-256x256.png',
252 'links' => [
253 [
254 'label' => __( 'Download', 'pods' ),
255 'url' => 'https://downloads.wordpress.org/plugin/pmpro-pods.zip',
256 ],
257 [
258 'label' => __( 'Learn More', 'pods' ),
259 'url' => 'https://wordpress.org/plugins/pmpro-pods/',
260 ],
261 [
262 'label' => __( 'Support', 'pods' ),
263 'title' => __( 'Support Forums', 'pods' ),
264 'url' => 'https://wordpress.org/support/plugin/pmpro-pods/',
265 ],
266 [
267 'label' => __( 'Docs', 'pods' ),
268 'title' => __( 'Documentation', 'pods' ),
269 'url' => 'https://www.paidmembershipspro.com/add-ons/pods-integration/',
270 ],
271 [
272 'label' => __( 'GitHub', 'pods' ),
273 'url' => 'https://github.com/strangerstudios/pmpro-pods',
274 ],
275 ],
276 ],
277 [
278 'label' => 'Panda Pods Repeater Field Add-On',
279 'description' => __( '(Advanced setup required) Add groups of fields that repeat and are stored in their own custom database table', 'pods' ),
280 'icon' => 'https://ps.w.org/panda-pods-repeater-field/assets/icon-128x128.png',
281 'links' => [
282 [
283 'label' => __( 'Download', 'pods' ),
284 'url' => 'https://downloads.wordpress.org/plugin/panda-pods-repeater-field.zip',
285 ],
286 [
287 'label' => __( 'Learn More', 'pods' ),
288 'url' => 'https://wordpress.org/plugins/panda-pods-repeater-field/',
289 ],
290 [
291 'label' => __( 'Support', 'pods' ),
292 'title' => __( 'Support Forums', 'pods' ),
293 'url' => 'https://wordpress.org/support/plugin/panda-pods-repeater-field/',
294 ],
295 [
296 'label' => __( 'GitHub', 'pods' ),
297 'url' => 'https://github.com/coding-panda/panda-pods-repeater-field',
298 ],
299 ],
300 ],
301 ];
302
303 pods_view( PODS_DIR . 'ui/admin/help-addons.php', compact( array_keys( get_defined_vars() ) ) );
304 ?>
305
306 <h2><?php esc_html_e( 'Pods Pro by SKCDEV Premium Add-Ons', 'pods' ); ?></h2>
307
308 <p><?php esc_html_e( 'These add-ons were developed by the Lead Developer of the Pods Framework project as a way to fund development of unique features and integrations that take Pods further.', 'pods' ); ?></p>
309
310 <?php
311 $addons = [
312 [
313 'label' => 'List Tables Add-On',
314 'description' => __( 'A new block and shortcode to list/filter content from Pods in a table format', 'pods' ),
315 'icon' => plugin_dir_url( PODS_FILE ) . 'ui/images/help/List-Tables-150x150.png',
316 'links' => [
317 [
318 'label' => __( 'Download', 'pods' ),
319 'url' => 'https://pods-pro.skc.dev/dashboard/downloads/',
320 ],
321 [
322 'label' => __( 'Learn More', 'pods' ),
323 'url' => 'https://pods-pro.skc.dev/downloads/list-tables/',
324 ],
325 [
326 'label' => __( 'Support', 'pods' ),
327 'url' => 'https://pods-pro.skc.dev/dashboard/get-support/',
328 ],
329 ],
330 ],
331 [
332 'label' => 'Page Builder Toolkit Add-On',
333 'description' => __( 'Integrates Pods with Beaver Builder, Beaver Themer, Divi Theme, Elementor, GenerateBlocks, and Oxygen Builder', 'pods' ),
334 'icon' => plugin_dir_url( PODS_FILE ) . 'ui/images/help/page-builder-toolkit-4x-150x150.png',
335 'links' => [
336 [
337 'label' => __( 'Download', 'pods' ),
338 'url' => 'https://pods-pro.skc.dev/dashboard/downloads/',
339 ],
340 [
341 'label' => __( 'Learn More', 'pods' ),
342 'url' => 'https://pods-pro.skc.dev/downloads/page-builder-toolkit/',
343 ],
344 [
345 'label' => __( 'Support', 'pods' ),
346 'url' => 'https://pods-pro.skc.dev/dashboard/get-support/',
347 ],
348 ],
349 ],
350 [
351 'label' => 'Advanced Relationships Storage Add-On',
352 'description' => __( 'Advanced options for relationship storage', 'pods' ),
353 'icon' => plugin_dir_url( PODS_FILE ) . 'ui/images/help/advanced-relationship-storage-4x-150x150.png',
354 'links' => [
355 [
356 'label' => __( 'Download', 'pods' ),
357 'url' => 'https://pods-pro.skc.dev/dashboard/downloads/',
358 ],
359 [
360 'label' => __( 'Learn More', 'pods' ),
361 'url' => 'https://pods-pro.skc.dev/downloads/advanced-relationship-storage/',
362 ],
363 [
364 'label' => __( 'Support', 'pods' ),
365 'url' => 'https://pods-pro.skc.dev/dashboard/get-support/',
366 ],
367 ],
368 ],
369 [
370 'label' => 'TablePress Integration Add-On',
371 'description' => __( 'Integrates Pods with TablePress', 'pods' ),
372 'icon' => plugin_dir_url( PODS_FILE ) . 'ui/images/help/tablepress-integration-4x-150x150.png',
373 'links' => [
374 [
375 'label' => __( 'Download', 'pods' ),
376 'url' => 'https://pods-pro.skc.dev/dashboard/downloads/',
377 ],
378 [
379 'label' => __( 'Learn More', 'pods' ),
380 'url' => 'https://pods-pro.skc.dev/downloads/tablepress-integration/',
381 ],
382 [
383 'label' => __( 'Support', 'pods' ),
384 'url' => 'https://pods-pro.skc.dev/dashboard/get-support/',
385 ],
386 ],
387 ],
388 [
389 'label' => 'Advanced Permalinks Add-On',
390 'description' => __( 'Advanced permalink structures and taxonomy landing pages', 'pods' ),
391 'icon' => plugin_dir_url( PODS_FILE ) . 'ui/images/help/advanced-permalinks-4x-150x150.png',
392 'links' => [
393 [
394 'label' => __( 'Download', 'pods' ),
395 'url' => 'https://pods-pro.skc.dev/dashboard/downloads/',
396 ],
397 [
398 'label' => __( 'Learn More', 'pods' ),
399 'url' => 'https://pods-pro.skc.dev/downloads/advanced-permalinks/',
400 ],
401 [
402 'label' => __( 'Support', 'pods' ),
403 'url' => 'https://pods-pro.skc.dev/dashboard/get-support/',
404 ],
405 ],
406 ],
407 ];
408
409 pods_view( PODS_DIR . 'ui/admin/help-addons.php', compact( array_keys( get_defined_vars() ) ) );
410 ?>
411 </div>
412
413 <?php
414 /**
415 * Allow additional output after the container area of the Pods help screen.
416 *
417 * @since 2.7.17
418 */
419 do_action( 'pods_admin_after_help' );
420 ?>
421
422 </div>
423