publish ) {
$text = sprintf(
/* translators: %s: number of posts published */
_n( '%s GiveWP Form', '%s GiveWP Forms', $num_posts->publish, 'give' ),
$num_posts->publish
);
$text = sprintf( $text, number_format_i18n( $num_posts->publish ) );
if ( current_user_can( 'edit_give_forms', get_current_user_id() ) ) {
$text = sprintf(
'%2$s',
DonationFormsAdminPage::getUrl(),
$text
);
} else {
$text = sprintf(
'%1$s',
$text
);
}
$items[] = $text;
}
return $items;
}
add_filter( 'dashboard_glance_items', 'give_dashboard_at_a_glance_widget', 1, 1 );