PluginProbe
PowerPress Podcasting plugin by Blubrry / 11.17.2
PowerPress Podcasting plugin by Blubrry v11.17.2
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 / admin / editlist.php

editlist.php in PowerPress Podcasting plugin by Blubrry 11.17.2, at admin/editlist.php

15 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <h1 class="pageTitle"><?php echo esc_html(__('Edit List', 'powerpress-network'));?></h1>
2 <form method="POST" action="#/" id="createForm"> <!-- Make sure to keep back slash there for WordPress -->
3 <label for="oldListTitle"><b><?php echo esc_html(__('Old List Title', 'powerpress-network'));?></b></label>
4 <input id="oldListTitle" name="oldListTitle" type="text" value="<?php echo esc_html($networkInfo['list_title']); ?>" disabled><br>
5 <label for="editListTitle"><b><?php echo esc_html(__('New List Title', 'powerpress-network'));?></b></label>
6 <input id="editListTitle" name="editListTitle" type="text" value="<?php echo esc_html($networkInfo['list_title']); ?>"><br>
7 <label for="listDescription"><b><?php echo esc_html(__('Old List Description', 'powerpress-network'));?></b></label>
8 <textarea id ="listDescription" class="description" name="listDescription" rows ="3" type="text" disabled><?php echo esc_html($networkInfo['list_description']);?></textarea><br>
9 <label for="editListDescription"><b><?php echo esc_html(__('New List Description', 'powerpress-network'));?></b></label>
10 <textarea id ="editListDescription" class="description" name="editListDescription" rows ="3" type="text"><?php echo esc_html($networkInfo['list_description']);?></textarea><br>
11 <button type="submit" class="primaryButton" onclick="directStatus('Select Choice', 'createForm', true)"><?php echo esc_html(__('Edit', 'powerpress-network'));?></button>
12 <a class="ppn-back-button" href="<?php echo admin_url("admin.php?page=". urlencode(powerpress_admin_get_page()) ."&status=Select+Choice"); ?>">
13 <p><?php echo '&#8592; ' . esc_html(__('Back', 'powerpress-network'));?></p></a>
14 </form>
15