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-categoryfeeds.php
<?php

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

function powerpress_admin_customfeeds_columns($data=array()){
	$data['name'] = __('Category Name', 'powerpress');
	$data['feed-slug'] = __('Slug', 'powerpress');
	$data['url'] = __('Feed URL', 'powerpress');
	return $data;
}

add_filter('manage_powerpressadmin_categoryfeeds_columns', 'powerpress_admin_customfeeds_columns');

function powerpress_admin_categoryfeeds(){
	$General = powerpress_get_settings('powerpress_general');

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

    <h2 class="pp-page-header"><?php echo __('Category Podcasting', 'powerpress'); ?></h2>
    <h3 class="pp-page-h3"><?php echo __('Category Podcasting adds custom podcast settings to specific blog category feeds, allowing you to organize episodes by topic.', 'powerpress'); ?></h3>

    <div class="pp-card-body">
        <div class="pp-row pp-tools-row">
            <div class="pp-col-50">
                <div class="pp-row">
                    <h2 class="pp-page-sub-header">Add Podcast Category</h2>
                </div>

                <div class="form-field form-required">
                    <h3><label for="feed_name"><?php echo __('Select Category', 'powerpress') ?></label></h3>
                    <?php wp_dropdown_categories(array('class'=>'category-list', 'show_option_none'=>__('Select Category', 'powerpress'), 'orderby'=>'name', 'hide_empty'=>0, 'hierarchical'=>1, 'name'=>'term', 'id'=>'term_id')); ?>
                </div>

                <p class="submit"><input style="background-color: white; color: #4e93d9; border: 1px solid #4e93d9" type="submit" class="powerpress_save_button_other pp-tools-button" name="submit" value="<?php echo __('ADD SETTINGS TO CATEGORY FEED', 'powerpress'); ?>"/></p>
            </div>

            <div class="pp-col-50">
                <div class="pp-row">
                    <h2 class="pp-page-sub-header">Why would I use Podcast Categories?</h2>
                </div>

                <ul style="list-style: unset; padding-left: 20px;">
                    <li>
                        <h3 style="font-weight: 400;">You have a podcast that covers two topics that sometimes share same posts and sometimes do not. Use your main podcast feed as a combined feed of both topics 	and use category feeds to distribute topic specific episodes.</h3>
                    </li>
                     <li>
                        <h3 style="font-weight: 400;">You want to use categories to keep episodes separate from each other. Each category can be used to distribute separate podcasts with the main podcast feed combining all categories to provide a network feed</h3>
                    </li>
                </ul>
            </div>
        </div>

        <div class="pp-row pp-tools-row" style="margin-top: 20px;">
            <table class="widefat fixed">
	            <thead>
	                <tr>
                        <?php print_column_headers('powerpressadmin_categoryfeeds'); ?>
	                </tr>
	            </thead>

	            <tfoot>
	                <tr>
                        <?php print_column_headers('powerpressadmin_categoryfeeds', false); ?>
	                </tr>
	            </tfoot>

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

                        $count = 0;
                        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;
                            }

                            $columns = powerpress_admin_customfeeds_columns();
                            $hidden = array();

                            if($count % 2 == 0){
                                echo '<tr class="alternate">';
                            } else {
                                echo '<tr>';
                            }

                            $edit_link = admin_url('admin.php?page='. powerpress_admin_get_page() .'&amp;action=powerpress-editcategoryfeed&amp;cat=') . $cat_ID;

                            $feed_title = $category->name;

                            if(!empty($General['cat_casting_podcast_feeds'])){
                                $url = get_category_feed_link($cat_ID, 'podcast');
                            } else {
                                $url = get_category_feed_link($cat_ID);
                            }

                            $short_url = str_replace('http://', '', $url);
                            $short_url = str_replace('www.', '', $short_url);
                            if(strlen($short_url) > 35){
                                $short_url = substr($short_url, 0, 32).'...';
                            }

                            foreach($columns as $column_name=>$column_display_name){
                                $class = "class=\"column-$column_name\"";

                                switch($column_name){
                                    case 'feed-slug': {
                                        echo "<td $class>{$category->slug}";
                                        echo "</td>";

                                    } break;

                                    case 'name': {
                                        echo '<td '.$class.'><strong><a class="row-title" href="'.$edit_link.'" title="' . esc_attr(sprintf(__('Edit "%s"', 'powerpress'), $feed_title)) . '">'. esc_html($feed_title) .'</a></strong><br />';
                                        $actions = array();
                                        $actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit', 'powerpress') . '</a>';
                                        $actions['remove'] = "<a class='submitdelete' href='". admin_url() . wp_nonce_url("admin.php?page=". powerpress_admin_get_page() ."&amp;action=powerpress-delete-category-feed&amp;cat=$cat_ID", 'powerpress-delete-category-feed-' . $cat_ID) . "' onclick=\"if ( confirm('" . esc_js(sprintf( __("You are about to remove podcast settings for category feed '%s'\n  'Cancel' to stop, 'OK' to delete.", 'powerpress'), esc_html($feed_title) )) . "') ) { return true;}return false;\">" . __('Remove', 'powerpress') . "</a>";
                                        $action_count = count($actions);
                                        $i = 0;
                                        echo '<div class="row-actions">';
                                        foreach($actions as $action => $linkaction){
                                            ++$i;
                                            ($i == $action_count) ? $sep = '' : $sep = ' | ';
                                            echo '<span class="'.$action.'">'.$linkaction.$sep .'</span>';
                                        }
                                        echo '</div>';
                                        echo '</td>';

                                    } break;

                                    case 'url': {
                                        echo "<td $class><a href='$url' title='". esc_attr(sprintf(__('Visit %s', 'powerpress'), $feed_title))."' target=\"_blank\">$short_url</a>";
                                            echo '<div class="row-actions">';
                                                if(defined('POWERPRESS_FEEDVALIDATOR_URL')){
                                                    echo '<span class="'.$action .'"><a href="'. POWERPRESS_FEEDVALIDATOR_URL . urlencode( str_replace('&amp;', '&', $url) ) .'" target="_blank">' . __('Validate Feed', 'powerpress') . '</a></span>';
                                                }
                                            echo '</div>';
                                        echo "</td>";

                                    } break;

                                    case 'episode-count': {
                                        echo "<td $class>$episode_total";
                                        echo "</td>";

                                    } break;
                                    default: {

                                    } break;
                                }
                            }
                            echo "\n    </tr>\n";
                            $count++;
                        }
                    ?>
	            </tbody>
            </table>
        </div>

        <input type="hidden" name="action" value="powerpress-addcategoryfeed" />
        <input type="hidden" name="taxonomy" value="category" />
        <?php wp_nonce_field('powerpress-add-taxonomy-feed'); ?>

        </form> <!-- closing form started on another page -->

        <br>
        <div class="pp-row pp-tools-row">
            <form enctype="multipart/form-data" method="post" action="<?php echo admin_url( 'admin.php?page='. powerpress_admin_get_page() ) ?>">
                <input type="hidden" name="action" value="powerpress-category-settings" />
                <?php wp_nonce_field('powerpress-category-settings'); ?>

                <div class="pp-row" style="width: 100%;">
                    <h2 class="pp-page-sub-header">Category Podcast Settings</h2>
                </div>

                <h3 style="width: 100%;">Strict Categories</h3>
                <p><input type="hidden" name="cat_casting_strict" value="0" />
                <label><input type="checkbox" name="cat_casting_strict" value="1" <?php echo ( !empty($General['cat_casting_strict']) ?'checked ':''); ?>/>
                <?php echo __('Select a specific category to each episode for statistics tracking and subscription links.', 'powerpress'); ?></label></p>

                <h3 style="width: 100%;">Podcast Only Feeds</h3>
                <p><input type="hidden" name="cat_casting_podcast_feeds" value="0" />
                <label><input type="checkbox" name="cat_casting_podcast_feeds" value="1" <?php echo ( !empty($General['cat_casting_podcast_feeds']) ?'checked ':''); ?>/>
                <?php echo __('Enable to separate blog posts from podcast episodes.', 'powerpress'); ?></label></p>

                <div class="pp-row" style="width: 100%;">
                    <p style="margin: 0;"><input type="submit" class="powerpress_save_button_other pp-tools-button" name="submit" value="<?php echo __('Save Settings', 'powerpress'); ?>" /></p>
                </div>
            </form>
        </div>
    </div>

    <br>

    <style>
        .pp-col-50 { width: 50%; }
        .column-url { width: 40%; }
        .column-name { width: 30%; }
        .column-feed-slug { width: 15%; }
        .column-episode-count { width: 15%; }
        .category-list { width: 100%; }
    </style>

<?php } ?>

Youez - 2016 - github.com/yon3zu
LinuXploit