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