Jake Vanderwerf
2026-02-10 8c4279f9bbe7ec4681412865b999f2f4457d80ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
// /users/client.php
function altr_user_client():array
{
    return [
        'label'            => 'Client',
        'singular'          => 'Singular',
        'plural'            => 'Plural',
        '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',
        ],
    ];
}