RegisterSettingSection.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\BetaFeatures\Actions; |
| 4 | |
| 5 | /** |
| 6 | * @since 3.6.0 |
| 7 | */ |
| 8 | class RegisterSettingSection |
| 9 | { |
| 10 | /** |
| 11 | * @since 3.6.0 |
| 12 | */ |
| 13 | public function __invoke($sections) |
| 14 | { |
| 15 | $sections['beta'] = apply_filters('givewp_settings_section_title_beta', __('Beta Features', 'give')); |
| 16 | return $sections; |
| 17 | } |
| 18 | } |
| 19 |