Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
22 | public function __construct() |
||
23 | { |
||
24 | $this->setName($this->namespace . 'FormSectionStatusEnum'); |
||
25 | $this->setDescription(esc_html__( |
||
26 | 'Whether form section is active, archived, shared, trashed, or used as a default on new forms.', |
||
27 | 'event_espresso' |
||
28 | )); |
||
29 | parent::__construct(); |
||
30 | } |
||
31 | |||
57 |