| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template for Settings. |
| 4 |
* |
| 5 |
* This is the template that edit form settings |
| 6 |
* |
| 7 |
*/ |
| 8 |
|
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit; // Exit if accessed directly. |
| 11 |
} |
| 12 |
?> |
| 13 |
<!-- This file should primarily consist of HTML with a little bit of PHP. --> |
| 14 |
|
| 15 |
<div class="wrap wdk-wrap"> |
| 16 |
<h1 class="wp-heading-inline"><?php echo __('WDK Demo Import', 'wpdirectorykit'); ?></h1> |
| 17 |
<br /><br /> |
| 18 |
<div class="wdk-body"> |
| 19 |
<div class="postbox" style="display: block;"> |
| 20 |
<div class="postbox-header"> |
| 21 |
<h3><?php echo __('Demo data for theme:', 'wpdirectorykit'); ?> <?php echo esc_html($current_theme->get( 'Name' )); ?></h3> |
| 22 |
</div> |
| 23 |
<div class="inside"> |
| 24 |
|
| 25 |
<div class="wdk_theme-about"> |
| 26 |
<div class="wdk_theme-about-screenshots"> |
| 27 |
<div class="screenshot"><img src="<?php echo esc_url($current_theme->get_screenshot()); ?>" alt="<?php echo __('Theme screenshot', 'wpdirectorykit'); ?>"></div> |
| 28 |
</div> |
| 29 |
|
| 30 |
<div class="wdk_theme-about-info"> |
| 31 |
<div class="top-content"> |
| 32 |
<div class="theme-title"> |
| 33 |
<h2 class="theme-name"><?php echo esc_html($current_theme->get( 'Name' )); ?></h2> |
| 34 |
<span class="theme-version"><?php echo __('Version:', 'wpdirectorykit'); ?> <?php echo esc_html($current_theme->get( 'Version' )); ?></span> |
| 35 |
</div> |
| 36 |
<p class="theme-author"> |
| 37 |
<?php echo __('By:', 'wpdirectorykit'); ?> <a href="<?php echo esc_html($current_theme->get( 'AuthorURI' )); ?>"><?php echo esc_html($current_theme->get( 'Author' )); ?></a> |
| 38 |
</p> |
| 39 |
|
| 40 |
<p class="theme-description"><?php echo esc_html($current_theme->get( 'Description' )); ?></p> |
| 41 |
</div> |
| 42 |
</div> |
| 43 |
</div> |
| 44 |
|
| 45 |
|
| 46 |
</div> |
| 47 |
</div> |
| 48 |
<p class="wdk_button-container"> |
| 49 |
<a href="<?php echo admin_url('tools.php?page=wdk_demo_import&function=step_1');?>" class="wdk_button button button-hero button-primary"><?php echo __('Import Demo Data - Step 1','wpdirectorykit'); ?></a> |
| 50 |
</p> |
| 51 |
</div> |
| 52 |
<br/> |
| 53 |
<div class="alert alert-info" role="alert"><a href="<?php echo esc_html($current_theme->get( 'ThemeURI' )); ?>" target="_blank"><?php echo __('Theme Data will be downloaded from API:','wpdirectorykit'); ?> <?php echo esc_html($current_theme->get( 'AuthorURI' )); ?> <?php echo __('On any trouble contact us via website contact page.','wpdirectorykit'); ?></a></div> |
| 54 |
</div> |
| 55 |
|
| 56 |
<style> |
| 57 |
|
| 58 |
|
| 59 |
.wdk_theme-about |
| 60 |
{ |
| 61 |
display: flex; |
| 62 |
} |
| 63 |
|
| 64 |
.wdk_theme-about .wdk_theme-about-screenshots |
| 65 |
{ |
| 66 |
display: flex; |
| 67 |
flex: 11; |
| 68 |
margin-right: 15px; |
| 69 |
} |
| 70 |
|
| 71 |
.wdk_theme-about .wdk_theme-about-info |
| 72 |
{ |
| 73 |
display: flex; |
| 74 |
flex: 10; |
| 75 |
} |
| 76 |
|
| 77 |
|
| 78 |
|
| 79 |
.wdk_theme-about-screenshots .screenshot |
| 80 |
{ |
| 81 |
box-sizing: border-box; |
| 82 |
} |
| 83 |
|
| 84 |
.wdk_theme-about-screenshots .screenshot img { |
| 85 |
|
| 86 |
border: 1px solid #CCD0D4; |
| 87 |
-webkit-filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.07)); |
| 88 |
filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.07)); |
| 89 |
width:100%; |
| 90 |
} |
| 91 |
|
| 92 |
.wdk_theme-about-info .theme-description { |
| 93 |
font-size: 16px; |
| 94 |
line-height: 24px; |
| 95 |
color: #555555; |
| 96 |
margin: 0 0 20px; |
| 97 |
} |
| 98 |
|
| 99 |
</style> |
| 100 |
|
| 101 |
<?php $this->view('general/footer', $data); ?> |