https://github.com/PressForward/pressforward
Raw File
Tip revision: e5b086a36bcb559865a4150efd2db3af9c96da72 authored by Boone B Gorges on 16 January 2024, 22:30:10 UTC
Bump stable tag to 5.6.2.
Tip revision: e5b086a
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', 'pressforward' ); ?>"><br></div>
		<h3 class="hndle"><span><?php esc_html_e( 'Feed Problems', 'pressforward' ); ?></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