callouts
2 years ago
upgrade
2 years ago
widgets
2 years ago
components-admin.php
2 years ago
help-addons-row.php
2 years ago
help-addons.php
2 years ago
help.php
2 years ago
postbox-header.php
2 years ago
settings-reset.php
2 years ago
settings-settings.php
2 years ago
settings-tools.php
2 years ago
settings.php
2 years ago
setup-add.php
2 years ago
setup-edit.php
2 years ago
shortcode.php
2 years ago
view.php
2 years ago
help-addons.php
26 lines
| 1 | <?php |
| 2 | // Don't load directly. |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | die( '-1' ); |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * @var array $addons |
| 9 | */ |
| 10 | ?> |
| 11 | |
| 12 | <table class="pods-admin-help-info widefat striped fixed"> |
| 13 | <thead> |
| 14 | <tr> |
| 15 | <th></th> |
| 16 | <th><?php esc_html_e( 'Plugin', 'pods' ); ?></th> |
| 17 | <th><?php esc_html_e( 'Links', 'pods' ); ?></th> |
| 18 | </tr> |
| 19 | </thead> |
| 20 | <tbody> |
| 21 | <?php foreach ( $addons as $addon ) : ?> |
| 22 | <?php pods_view( PODS_DIR . 'ui/admin/help-addons-row.php', compact( array_keys( get_defined_vars() ) ) ); ?> |
| 23 | <?php endforeach; ?> |
| 24 | </tbody> |
| 25 | </table> |
| 26 |