PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.8
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.8
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/FrmEmailMonthly.php +0 -13 6.306.8 View file →
@@ -2,9 +2,8 @@
2 2 /**
3 3 * Monthly summary email class
4 4 *
5 5 * @since 6.7
6 - *
7 6 * @package Formidable
8 7 */
9 8
10 9 if ( ! defined( 'ABSPATH' ) ) {
@@ -21,18 +20,6 @@
21 20 }
22 21
23 22 protected function get_top_forms_label() {
24 23 return __( 'Top forms this month', 'formidable' );
25 - }
26 -
27 - /**
28 - * @since 6.8.4
29 - */
30 - protected function get_content_args() {
31 - // Do not send monthly email if there is no entries this month.
32 - if ( ! FrmEmailSummaryHelper::get_entries_count( $this->from_date, $this->to_date ) ) {
33 - return false;
34 - }
35 -
36 - return parent::get_content_args();
37 24 }
38 25 }