| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
function powerpress_admin_import_feed(){ |
| 5 |
// If we have powerpress credentials, check if the account has been verified |
| 6 |
$creds = get_option('powerpress_creds'); |
| 7 |
powerpress_check_credentials($creds); |
| 8 |
|
| 9 |
powerpress_enqueue_assets([ |
| 10 |
'powerpress-admin' => ['type' => 'script', 'path' => 'js/admin', 'deps' => ['jquery']], |
| 11 |
]); |
| 12 |
?> |
| 13 |
|
| 14 |
<div class="pp-card-body"> |
| 15 |
<div class="pp-row pp-tools-row"> |
| 16 |
<h2 class="pp-page-sub-header">Import Podcast</h2> |
| 17 |
</div> |
| 18 |
<div class="pp-row pp-tools-row"> |
| 19 |
<p class="pp-tools-text" style="margin-bottom: 10px;">Import your podcast including episodes, media files and settings.</p> |
| 20 |
</div> |
| 21 |
|
| 22 |
<div class="pp-row pp-tools-row"> |
| 23 |
<h3>Hosting platforms</h3> |
| 24 |
</div> |
| 25 |
<div class="pp-row pp-tools-row" style="margin-bottom: 40px;"> |
| 26 |
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-soundcloud-rss-podcast"); ?>"> |
| 27 |
<img src="<?php echo powerpress_get_root_url(); ?>images/soundcloud.png" class="hosting-platform-img" alt="<?php echo __('SoundCloud', 'powerpress'); ?>"/> |
| 28 |
<p class="hosting-platform-text">SoundCloud</p> |
| 29 |
</a> |
| 30 |
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-libsyn-rss-podcast"); ?>"> |
| 31 |
<img style="width: 32%;" src="<?php echo powerpress_get_root_url(); ?>images/libsyn.png" class="hosting-platform-img" alt="<?php echo __('Libsyn', 'powerpress'); ?>"/> |
| 32 |
<p class="hosting-platform-text">LibSyn</p> |
| 33 |
</a> |
| 34 |
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-podbean-rss-podcast"); ?>"> |
| 35 |
<img style="width: 29%;" src="<?php echo powerpress_get_root_url(); ?>images/podbean.png" class="hosting-platform-img" alt="<?php echo __('PodBean', 'powerpress'); ?>"/> |
| 36 |
<p class="hosting-platform-text">PodBean</p> |
| 37 |
</a> |
| 38 |
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-squarespace-rss-podcast"); ?>"> |
| 39 |
<img src="<?php echo powerpress_get_root_url(); ?>images/squarespace.png" class="hosting-platform-img" alt="<?php echo __('Squarespace', 'powerpress'); ?>"/> |
| 40 |
<p class="hosting-platform-text">Squarespace</p> |
| 41 |
</a> |
| 42 |
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-anchor-rss-podcast"); ?>"> |
| 43 |
<img style="width: 31%;" src="<?php echo powerpress_get_root_url(); ?>images/anchor.png" class="hosting-platform-img" alt="<?php echo __('Anchor', 'powerpress'); ?>"/> |
| 44 |
<p class="hosting-platform-text">Anchor</p> |
| 45 |
</a> |
| 46 |
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-buzzsprout-rss-podcast"); ?>"> |
| 47 |
<img style="width: 31%;" src="<?php echo powerpress_get_root_url(); ?>images/buzzsprout.png" class="hosting-platform-img" alt="<?php echo __('Buzzsprout', 'powerpress'); ?>"/> |
| 48 |
<p class="hosting-platform-text">Buzzsprout</p> |
| 49 |
</a> |
| 50 |
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-rss-podcast"); ?>"> |
| 51 |
<img style="width: 23%;" src="<?php echo powerpress_get_root_url(); ?>images/rss.png" class="hosting-platform-img" alt="<?php echo __('Anywhere else', 'powerpress'); ?>"/> |
| 52 |
<p class="hosting-platform-text">Anywhere else</p> |
| 53 |
</a> |
| 54 |
</div> |
| 55 |
|
| 56 |
<div class="pp-row pp-tools-row"> |
| 57 |
<h3 style="margin-bottom: 10px;">Migrate Podcast Media</h3> |
| 58 |
</div> |
| 59 |
|
| 60 |
<div class="pp-row pp-tools-row"> |
| 61 |
<p class="pp-tools-text">Migrate Media to your Blubrry Podcast Media Hosting Account.</p> |
| 62 |
</div> |
| 63 |
|
| 64 |
<div class="pp-row pp-tools-row"> |
| 65 |
<a style="margin: 0 0 30px 0;" class="powerpress_save_button_other pp-tools-button" href="<?php echo admin_url("admin.php?page=powerpress/powerpressadmin_migrate.php"); ?>"><?php echo __('MIGRATE MEDIA', 'powerpress'); ?></a> |
| 66 |
</div> |
| 67 |
</div> |
| 68 |
<?php } |
| 69 |
|
| 70 |
// eof |