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-addons.php
29 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 | /** |
| 11 | * @var array $addons |
| 12 | */ |
| 13 | ?> |
| 14 | |
| 15 | <table class="pods-admin-help-info widefat striped fixed"> |
| 16 | <thead> |
| 17 | <tr> |
| 18 | <th></th> |
| 19 | <th><?php esc_html_e( 'Plugin', 'pods' ); ?></th> |
| 20 | <th><?php esc_html_e( 'Links', 'pods' ); ?></th> |
| 21 | </tr> |
| 22 | </thead> |
| 23 | <tbody> |
| 24 | <?php foreach ( $addons as $addon ) : ?> |
| 25 | <?php pods_view( PODS_DIR . 'ui/admin/help-addons-row.php', compact( array_keys( get_defined_vars() ) ) ); ?> |
| 26 | <?php endforeach; ?> |
| 27 | </tbody> |
| 28 | </table> |
| 29 |