https://github.com/PressForward/pressforward
Raw File
Tip revision: 7b4eb3cb8147318b47cd546a3e2d2d48fddb75c6 authored by dependabot[bot] on 01 March 2023, 19:59:43 UTC
Bump yargs-parser and yargs
Tip revision: 7b4eb3c
tab-alerts.tpl.php
<?php
/**
 * Template for Alerts tab.
 *
 * @package PressForward
 */

?>

<?php if ( current_user_can( 'edit_posts' ) ) : ?>
	<div class="alert-box postbox">
		<div class="handlediv" title="<?php esc_attr_e( 'Click to toggle', 'pf' ); ?>"><br></div>
		<h3 class="hndle"><span><?php esc_html_e( 'Feed Problems', 'pf' ); ?></span></h3>
		<div class="inside">
			<?php
			pressforward( 'admin.menu' )->pf_alert_displayer();
			?>
		</div>
	</div>
<?php endif; ?>

<form method="post" action="options.php" enctype="multipart/form-data">
	<?php settings_fields( PF_SLUG . '_feedlist_group' ); ?>
</form>
back to top