Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class BricksSiteReviewsForm extends BricksElement |
||
9 | { |
||
10 | public function render() |
||
11 | { |
||
12 | if (!$this->elShortcode->hasVisibleFields($this->settings)) { |
||
13 | $this->render_element_placeholder([ |
||
14 | 'title' => esc_html_x('You have hidden all of the fields.', 'admin-text', 'site-reviews'), |
||
15 | ]); |
||
16 | return; |
||
17 | } |
||
18 | parent::render(); |
||
19 | } |
||
20 | |||
21 | public static function shortcode(): ShortcodeContract |
||
24 | } |
||
25 | } |
||
26 |