FeedWordPressSyndicationPage::manage_page_links_subsubsub PHP Method

    function manage_page_links_subsubsub($sources, $showInactive)
    {
        $hrefPrefix = $this->admin_page_href("syndication.php");
        ?>
	<ul class="subsubsub">
	<li><a <?php 
        if (!$showInactive) {
            ?>
class="current" <?php 
        }
        ?>
href="<?php 
        print $hrefPrefix;
        ?>
&amp;visibility=Y">Subscribed
	<span class="count">(<?php 
        print count($sources['Y']);
        ?>
)</span></a></li>
	<?php 
        if ($showInactive or count($sources['N']) > 0) {
            ?>
	<li><a <?php 
            if ($showInactive) {
                ?>
class="current" <?php 
            }
            ?>
href="<?php 
            print $hrefPrefix;
            ?>
&amp;visibility=N">Inactive</a>
	<span class="count">(<?php 
            print count($sources['N']);
            ?>
)</span></a></li>
	<?php 
        }
        ?>

	</ul> <!-- class="subsubsub" -->
<?php 
    }