403Webshell
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/wp-content/plugins/powerpress/powerpressadmin-live-item.php
<?php

if(!function_exists('add_action')){
    die("access denied.");
}


function powerpress_admin_live_item(){
    $General = powerpress_get_settings('powerpress_general');
    $hasChannels = isset($General['channels']) && $General['channels'] == 1;
    $hasCats = isset($General['cat_casting']) && $General['cat_casting'] == 1;
    $hasTax = isset($General['taxonomy_podcasting']) && $General['taxonomy_podcasting'] == 1;
    $hasPT = isset($General['posttype_podcasting']) && $General['posttype_podcasting'] == 1;

    $channelDefaultURL = admin_url()."admin.php?page=powerpress/powerpressadmin_customfeeds.php&action=powerpress-editfeed&tab=live-item-tab&";
    $catDefaultURL = admin_url().'admin.php?page=powerpress/powerpressadmin_categoryfeeds.php&action=powerpress-editcategoryfeed&tab=live-item-tab&';
    $taxDefaultURL = admin_url().'admin.php?page=powerpress/powerpressadmin_taxonomyfeeds.php&action=powerpress-edittaxonomyfeed&tab=live-item-tab&';
    $ptDefaultURL = admin_url().'admin.php?page=powerpress/powerpressadmin_posttypefeeds.php&action=powerpress-editposttypefeed&tab=live-item-tab&';

    // 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 );
    ?>

    <script>
        let defaultChannelURL = '<?php echo $channelDefaultURL; ?>';
        let defaultCatURL = '<?php echo $catDefaultURL; ?>';
        let defaultTaxURL = '<?php echo $taxDefaultURL; ?>';
        let defaultPtURL = '<?php echo $ptDefaultURL; ?>';

        jQuery(document).ready(function() {
            jQuery("#channel-selector").change(function () {
                jQuery("#channel-link").attr("href", encodeURI(defaultChannelURL + jQuery("#channel-selector").val()))
            });

            jQuery("#cat-selector").change(function () {
                jQuery("#cat-link").attr("href", encodeURI(defaultCatURL + jQuery("#cat-selector").val()))
            });

            jQuery("#tax-selector").change(function () {
                jQuery("#tax-link").attr("href", encodeURI(defaultTaxURL + jQuery("#tax-selector").val()))
            });

            jQuery("#pt-selector").change(function () {
                jQuery("#pt-link").attr("href", encodeURI(defaultPtURL + jQuery("#pt-selector").val()))
            });
        });
    </script>

    <h2 class="pp-page-header"><?php echo __('Live Item Tag', 'powerpress'); ?></h2>
    <h3 class="pp-page-h3"><?php echo __('This is a new initiative as part of Podcasting 2.0. The Live Item tag is for those with a live component to your show, whether it be an audio stream or a video stream. It is important to know that only apps that designate the LIT function at NewPodcastApps.com support this.', 'powerpress'); ?></h3>
    <h3 class="pp-page-h3"><?php echo __('Going live is a bigger part of podcasting now. What has been developed by Podcasting 2.0 is the ability for you to show up as live in the supported apps. Giving those listeners the ability to be notified in supported podcasting apps that you are live to be able to listen or watch within the podcasting apps that support this.', 'powerpress'); ?></h3>

    <div class="pp-card-body">
        <?php if ($hasChannels) {
            $Feeds = array('podcast'=>__('Podcast', 'powerpress') );

            if(isset($General['custom_feeds']['podcast'])){
                $Feeds = $General['custom_feeds'];
            } elseif( is_array($General['custom_feeds'])){
                $Feeds += $General['custom_feeds'];
            }
        ?>
        <h2 class="pp-page-sub-header"><?php echo __('Podcast Channels', 'powerpress'); ?></h2>
        <table class="widefat fixed">
            <thead>
            <tr><td><?php echo __('Show Select', 'powerpress'); ?></td><td><?php echo __('Edit Link', 'powerpress'); ?></td></tr>
            </thead>
            <tbody>
            <tr>
                <td>
                    <select class="pp-settings-select" id="channel-selector">
                        <?php
                        $count = 0;
                        $defaultSlug = "podcast";
                        foreach($Feeds as $feed_slug => $feed_title) {
                            if ($count == 0) {
                                $defaultSlug = $feed_slug;
                                $count++;
                            }
                            ?>
                        <option value="feed_slug=<?php echo $feed_slug?>"><?php echo __($feed_title ? $feed_title : "Podcast", 'powerpress'); ?></option>
                        <?php } ?>
                    </select>
                </td>
                <td><a id="channel-link" href="<?php echo esc_attr($channelDefaultURL . "feed_slug=$defaultSlug"); ?>"><?php echo __('Edit Live Settings', 'powerpress'); ?></a></td>
            </tr>
            </tbody>
        </table>
        <br />
        <?php } ?>

        <?php if ($hasCats) {
            $Feeds = array();
            if(isset($General['custom_cat_feeds'])){
                $Feeds = $General['custom_cat_feeds'];
            }

            if (count($Feeds) > 0) {
            ?>
            <h2 class="pp-page-sub-header"><?php echo __('Category Podcasts', 'powerpress'); ?></h2>
            <table class="widefat fixed">
                <thead>
                <tr><td><?php echo __('Categories', 'powerpress'); ?></td><td><?php echo __('Edit Link', 'powerpress'); ?></td></tr>
                </thead>
                <tbody>
                <tr>
                    <td>
                        <select class="pp-settings-select" id="cat-selector">
                            <?php foreach($Feeds as $null => $cat_ID){
                                    if(empty($cat_ID)){
                                        continue;
                                    }
                                    $category = get_category_to_edit($cat_ID);
                                    if(is_wp_error($category)){
                                        // $cat_ID does not existing
                                        continue;
                                    }
                            ?>
                                <option value="cat=<?php echo $cat_ID?>"><?php echo __($category->slug, 'powerpress'); ?></option>
                            <?php } ?>
                        </select>
                    </td>
                    <td><a id="cat-link" href="<?php echo esc_attr($catDefaultURL . "cat=".$Feeds[0]); ?>"><?php echo __('Edit Live Settings', 'powerpress'); ?></a></td>
                </tr>
                </tbody>
            </table>
            <br />
        <?php
            }
        } ?>

        <?php if ($hasTax) {
        $PowerPressTaxonomies = get_option('powerpress_taxonomy_podcasting');
        if(empty($PowerPressTaxonomies)){
            $PowerPressTaxonomies = array();
        }

        if (count($PowerPressTaxonomies) > 0) {
                ?>
                <h2 class="pp-page-sub-header"><?php echo __('Taxonomy Podcasts', 'powerpress'); ?></h2>
                <table class="widefat fixed">
                    <thead>
                    <tr><td><?php echo __('Term Name / Taxonomy', 'powerpress'); ?></td><td><?php echo __('Edit Link', 'powerpress'); ?></td></tr>
                    </thead>
                    <tbody>
                    <tr>
                        <td>
                            <select class="pp-settings-select" id="tax-selector">
                                <?php
                                $count = 0;
                                $defaultVals = array();
                                foreach($PowerPressTaxonomies as $tt_id => $null) {
                                    $taxonomy_type = '';
                                    $term_ID = '';

                                    global $wpdb;
                                    $term_info = $wpdb->get_results("SELECT term_id, taxonomy FROM $wpdb->term_taxonomy WHERE term_taxonomy_id = $tt_id",  ARRAY_A);
                                    if(!empty( $term_info[0]['term_id'])){
                                        $term_ID = $term_info[0]['term_id'];
                                        $taxonomy_type = $term_info[0]['taxonomy'];
                                    } else {
                                        continue; // we didn't find this taxonomy relationship
                                    }

                                    if ($count == 0) {
                                        $defaultVals['term_id'] = $term_ID;
                                        $defaultVals['taxonomy'] = $taxonomy_type;
                                        $defaultVals['ttid'] = $tt_id;
                                        $count += 1;
                                    }

                                    $term_object = get_term($term_ID, $taxonomy_type, OBJECT, 'edit');
                                    if(is_wp_error($term_object)){
                                        continue;
                                    }
                                    ?>
                                    <option value="term=<?php echo $term_ID?>&taxonomy=<?php echo $taxonomy_type?>&ttid=<?php echo $tt_id?>"><?php echo __($term_object->name.' / '.$taxonomy_type, 'powerpress'); ?></option>
                                <?php } ?>
                            </select>
                        </td>
                        <td><a id="tax-link" href="<?php echo esc_attr($taxDefaultURL . "term=".$defaultVals['term_id']."&taxonomy=".$defaultVals['taxonomy']."&ttid=".$defaultVals['ttid']); ?>"><?php echo __('Edit Live Settings', 'powerpress'); ?></a></td>
                    </tr>
                    </tbody>
                </table>
                <br />
                <?php
            }
        } ?>

        <?php if ($hasPT) {
            $post_types = powerpress_admin_get_post_types(false);

            $ptCount = 0;
            $validPts = array();
            foreach($post_types as $null => $post_type) {
                $PostTypeSettingsArray = get_option('powerpress_posttype_' . $post_type);
                if (!$PostTypeSettingsArray) {
                    continue;
                }

                $validPts[] = $post_type;
                $ptCount++;
            }

            if ($ptCount > 0) {
                ?>
                <h2 class="pp-page-sub-header"><?php echo __('Post Type Podcasts', 'powerpress'); ?></h2>
                <table class="widefat fixed">
                    <thead>
                    <tr><td><?php echo __('Feed Name / Post Type', 'powerpress'); ?></td><td><?php echo __('Edit Link', 'powerpress'); ?></td></tr>
                    </thead>
                    <tbody>
                    <tr>
                        <td>
                            <select class="pp-settings-select" id="pt-selector">
                                <?php
                                $count = 0;
                                $defaultVals = array();
                                foreach($validPts as $post_type) {
                                    $PostTypeSettingsArray = get_option('powerpress_posttype_'. $post_type );

                                    foreach($PostTypeSettingsArray as $feed_slug => $PostTypeSettings) {
                                        $feed_title = ( !empty($PostTypeSettings['title']) ? $PostTypeSettings['title'] : '(blank)');

                                        if ($count == 0) {
                                            $defaultVals['feed_slug'] = $feed_slug;
                                            $defaultVals['post_type'] = $post_type;
                                            $count += 1;
                                        }
                                    ?>
                                    <option value="feed_slug=<?php echo $feed_slug; ?>&podcast_post_type=<?php echo $post_type; ?>"><?php echo __($feed_title.' / '.$post_type, 'powerpress'); ?></option>
                                <?php }
                                }
                                ?>
                            </select>
                        </td>
                        <td><a id="pt-link" href="<?php echo esc_attr($ptDefaultURL . "feed_slug=".$defaultVals['feed_slug']."&podcast_post_type=".$defaultVals['post_type']); ?>"><?php echo __('Edit Live Settings', 'powerpress'); ?></a></td>
                    </tr>
                    </tbody>
                </table>
                <?php
            }
        } ?>

    </div>
<?php } ?>

Youez - 2016 - github.com/yon3zu
LinuXploit