partials
2 years ago
ads.php
2 years ago
calendly.php
2 years ago
custom-logo.php
2 years ago
dailymotion.php
4 years ago
elements.php
2 years ago
general.php
2 years ago
go-premium.php
2 years ago
google-calendar.php
2 years ago
license.php
5 years ago
main-template.php
5 years ago
opensea.php
3 years ago
premium.php
2 years ago
shortcode.php
2 years ago
soundcloud.php
4 years ago
sources.php
2 years ago
spotify.php
4 years ago
twitch.php
4 years ago
vimeo.php
3 years ago
wistia.php
4 years ago
youtube.php
3 years ago
main-template.php
28 lines
| 1 | <?php |
| 2 | /* |
| 3 | * Main settings page |
| 4 | * All undefined vars comes from 'render_settings_page' method |
| 5 | * */ |
| 6 | ?> |
| 7 | <div class="template__wrapper background__liteGrey p30 pb50"> |
| 8 | <div class="embedpress__container"> |
| 9 | <?php include_once EMBEDPRESS_SETTINGS_PATH . 'templates/partials/logo.php'; ?> |
| 10 | <div class="embedpress-body mb30"> |
| 11 | <?php include_once EMBEDPRESS_SETTINGS_PATH . 'templates/partials/sidebar.php'; ?> |
| 12 | <div class="embedpress-content"> |
| 13 | <?php |
| 14 | $template_file = apply_filters( 'embedpress_settings_template_path', EMBEDPRESS_SETTINGS_PATH . "templates/{$template}.php", $template); |
| 15 | if ( file_exists( $template_file ) ) { |
| 16 | include_once $template_file; |
| 17 | } |
| 18 | if ( 'license' != $template) { |
| 19 | include_once EMBEDPRESS_SETTINGS_PATH . 'templates/partials/toast-message.php'; |
| 20 | } |
| 21 | do_action( 'embedpress_settings_template', $template); |
| 22 | |
| 23 | ?> |
| 24 | </div> |
| 25 | </div> |
| 26 | <?php include_once EMBEDPRESS_SETTINGS_PATH . 'templates/partials/footer.php'; ?> |
| 27 | </div> |
| 28 | </div> |