| 1 |
<?php |
| 2 |
/** |
| 3 |
* Yearly summary email class |
| 4 |
* |
| 5 |
* @since 6.7 |
| 6 |
* @package Formidable |
| 7 |
*/ |
| 8 |
|
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
die( 'You are not allowed to call this page directly.' ); |
| 11 |
} |
| 12 |
|
| 13 |
class FrmEmailYearly extends FrmEmailStats { |
| 14 |
|
| 15 |
protected $date_range = 365; |
| 16 |
|
| 17 |
protected function get_subject() { |
| 18 |
return __( 'How your forms performed this year', 'formidable' ); |
| 19 |
} |
| 20 |
|
| 21 |
protected function get_top_forms_label() { |
| 22 |
return __( 'Top forms this year', 'formidable' ); |
| 23 |
} |
| 24 |
} |
| 25 |
|