| Conditions | 1 |
| Paths | 1 |
| Total Lines | 23 |
| Code Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function designConfig(): array |
||
| 11 | { |
||
| 12 | return [ |
||
| 13 | 'style_text_align' => [ |
||
| 14 | 'exclude' => ['auto', 'justify'], |
||
| 15 | 'group' => 'design', |
||
| 16 | 'inline' => true, |
||
| 17 | 'label' => esc_html_x('Text Align', 'admin-text', 'site-reviews'), |
||
| 18 | 'rerender' => true, |
||
| 19 | 'tab' => 'style', |
||
| 20 | 'themeStyle' => true, |
||
| 21 | 'type' => 'text-align', |
||
| 22 | ], |
||
| 23 | 'style_heading' => [ |
||
| 24 | 'css' => [[ |
||
| 25 | 'property' => 'font', |
||
| 26 | 'selector' => '.glsr:not([data-theme]) h2, .glsr:not([data-theme]) h3, .glsr:not([data-theme]) h4', |
||
| 27 | ]], |
||
| 28 | 'group' => 'design', |
||
| 29 | 'label' => esc_html_x('Heading', 'admin-text', 'site-reviews'), |
||
| 30 | 'tab' => 'style', |
||
| 31 | 'themeStyle' => true, |
||
| 32 | 'type' => 'typography', |
||
| 33 | ], |
||
| 53 |