RegisterSection.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\ThirdPartySupport\Elementor\Settings; |
| 4 | |
| 5 | /** |
| 6 | * @since 4.7.0 |
| 7 | */ |
| 8 | class RegisterSection |
| 9 | { |
| 10 | /** |
| 11 | * @since 4.7.0 |
| 12 | */ |
| 13 | public function __invoke(array $sections): array |
| 14 | { |
| 15 | $sections['elementor'] = __('Elementor', 'give'); |
| 16 | |
| 17 | return $sections; |
| 18 | } |
| 19 | } |
| 20 |