PluginProbe
PowerPress Podcasting plugin by Blubrry / trunk
PowerPress Podcasting plugin by Blubrry vtrunk
11.17.9 11.17.8 11.17.7 11.17.6 11.17.4 11.17.3 11.17.2 11.17.1 11.17 11.16.11 11.16.10 11.16.9 11.16.8 11.16.7 11.16.6 11.16.5 11.16.4 11.16.3 11.16.2 11.16.1 11.9.13 11.9.14 11.9.15 11.9.16 11.9.17 All 383 releases
powerpress / powerpressadmin-import-feed.php

powerpressadmin-import-feed.php in PowerPress Podcasting plugin by Blubrry trunk, at powerpressadmin-import-feed.php

70 lines 4.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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