| Server IP : 209.16.87.222 / Your IP : 216.73.217.138 Web Server : Apache/2.4.68 (Debian) System : Linux 797b534c095b 6.18.38-Unraid #1 SMP PREEMPT_DYNAMIC Mon Jul 6 15:22:03 PDT 2026 x86_64 User : ( 1000) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/powerpress/ |
Upload File : |
<?php
function powerpress_admin_import_feed(){
// If we have powerpress credentials, check if the account has been verified
$creds = get_option('powerpress_creds');
powerpress_check_credentials($creds);
wp_enqueue_script('powerpress-admin', powerpress_get_root_url() . 'js/admin.js', array(), POWERPRESS_VERSION );
?>
<div class="pp-card-body">
<div class="pp-row pp-tools-row">
<h2 class="pp-page-sub-header">Import Podcast</h2>
</div>
<div class="pp-row pp-tools-row">
<p class="pp-tools-text" style="margin-bottom: 10px;">Import your podcast including episodes, media files and settings.</p>
</div>
<div class="pp-row pp-tools-row">
<h3>Hosting platforms</h3>
</div>
<div class="pp-row pp-tools-row" style="margin-bottom: 40px;">
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-soundcloud-rss-podcast"); ?>">
<img src="<?php echo powerpress_get_root_url(); ?>images/soundcloud.png" class="hosting-platform-img" alt="<?php echo __('SoundCloud', 'powerpress'); ?>"/>
<p class="hosting-platform-text">SoundCloud</p>
</a>
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-libsyn-rss-podcast"); ?>">
<img style="width: 32%;" src="<?php echo powerpress_get_root_url(); ?>images/libsyn.png" class="hosting-platform-img" alt="<?php echo __('Libsyn', 'powerpress'); ?>"/>
<p class="hosting-platform-text">LibSyn</p>
</a>
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-podbean-rss-podcast"); ?>">
<img style="width: 29%;" src="<?php echo powerpress_get_root_url(); ?>images/podbean.png" class="hosting-platform-img" alt="<?php echo __('PodBean', 'powerpress'); ?>"/>
<p class="hosting-platform-text">PodBean</p>
</a>
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-squarespace-rss-podcast"); ?>">
<img src="<?php echo powerpress_get_root_url(); ?>images/squarespace.png" class="hosting-platform-img" alt="<?php echo __('Squarespace', 'powerpress'); ?>"/>
<p class="hosting-platform-text">Squarespace</p>
</a>
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-anchor-rss-podcast"); ?>">
<img style="width: 31%;" src="<?php echo powerpress_get_root_url(); ?>images/anchor.png" class="hosting-platform-img" alt="<?php echo __('Anchor', 'powerpress'); ?>"/>
<p class="hosting-platform-text">Anchor</p>
</a>
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-buzzsprout-rss-podcast"); ?>">
<img style="width: 31%;" src="<?php echo powerpress_get_root_url(); ?>images/buzzsprout.png" class="hosting-platform-img" alt="<?php echo __('Buzzsprout', 'powerpress'); ?>"/>
<p class="hosting-platform-text">Buzzsprout</p>
</a>
<a class="hosting-platform-button" href="<?php echo admin_url("admin.php?import=powerpress-rss-podcast"); ?>">
<img style="width: 23%;" src="<?php echo powerpress_get_root_url(); ?>images/rss.png" class="hosting-platform-img" alt="<?php echo __('Anywhere else', 'powerpress'); ?>"/>
<p class="hosting-platform-text">Anywhere else</p>
</a>
</div>
<div class="pp-row pp-tools-row">
<h3 style="margin-bottom: 10px;">Migrate Podcast Media</h3>
</div>
<div class="pp-row pp-tools-row">
<p class="pp-tools-text">Migrate Media to your Blubrry Podcast Media Hosting Account.</p>
</div>
<div class="pp-row pp-tools-row">
<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>
</div>
</div>
<?php }
// eof