1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <?php
| // /users/client.php
| function altr_user_client():array
| {
| return [
| 'label' => 'Client',
| 'has_dashboard' => true,
| 'can_create' => ['support'],
| 'can_register' => true,
| 'keep_stats' => false,
| 'icon' => 'user',
| 'register' => [
| 'text' => 'Refer your friends. Get rewarded.',
| 'title' => 'Create Your Account',
| 'description' => [
| 'Get your unique share code',
| 'Share it with your friends',
| 'Get notified when you get your credit'
| ],
| 'submit' => 'Create Your Account',
| ],
| ];
| }
|
|