| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | public function __construct() { |
||
| 9 | $action_ops = array( |
||
| 10 | 'classes' => 'frm_icon_font frm_email_solid_icon', |
||
| 11 | 'active' => true, |
||
| 12 | 'event' => array( 'create' ), |
||
| 13 | 'limit' => 99, |
||
| 14 | 'priority' => 10, |
||
| 15 | 'color' => 'rgb(49, 119, 199)', |
||
| 16 | ); |
||
| 17 | $action_ops = apply_filters( 'frm_email_control_settings', $action_ops ); |
||
| 18 | |||
| 19 | parent::__construct( 'email', __( 'Send Email', 'formidable' ), $action_ops ); |
||
| 20 | } |
||
| 21 | |||
| 47 |