| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class BricksSiteReviewsForm extends BricksElement |
||
| 9 | { |
||
| 10 | public function designConfig(): array |
||
| 22 | ], |
||
| 23 | ]; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function render() |
||
| 27 | { |
||
| 28 | if (!$this->shortcodeInstance()->hasVisibleFields($this->settings)) { |
||
| 29 | $this->render_element_placeholder([ |
||
| 30 | 'title' => esc_html_x('You have hidden all of the fields.', 'admin-text', 'site-reviews'), |
||
| 31 | ]); |
||
| 32 | return; |
||
| 33 | } |
||
| 34 | parent::render(); |
||
| 35 | } |
||
| 36 | |||
| 37 | public static function shortcodeClass(): string |
||
| 40 | } |
||
| 41 | } |
||
| 42 |