HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/pm/app/Views/clients/contacts/gdpr.php
<div class="tab-content">
    <?php $user_id = $login_user->id; ?>

    <?php echo form_open("", array("class" => "general-form dashed-row white", "role" => "form")); ?>
    <div class="card">
        <div class=" card-header">
            <h4><?php echo app_lang("gdpr"); ?></h4>
        </div>
        <div class="card-body">

            <?php if (get_setting("allow_clients_to_export_their_data")) { ?>
                <div class="form-group">
                    <div class="row">
                        <label for="export_my_data" class=" col-md-2"><?php echo app_lang('export_my_data'); ?></label>
                        <div class=" col-md-10">
                            <?php echo anchor(get_uri("clients/export_my_data/"), app_lang("export"), array("class" => "btn btn-primary", "title" => app_lang('export_my_data'))); ?>
                        </div>
                    </div>
                </div>
            <?php } ?>

            <?php if (get_setting("clients_can_request_account_removal")) { ?>
                <div class="form-group">
                    <div class="row">
                        <label for="request_my_account_removal" class=" col-md-2"><?php echo app_lang('i_want_to_remove_my_account'); ?></label>
                        <div class=" col-md-10">
                            <?php if ($user_info->requested_account_removal) { ?>
                                <button class="btn btn-danger" disabled="true"><?php echo app_lang("applied"); ?></button>
                                <?php
                            } else {
                                echo anchor(get_uri("clients/request_my_account_removal/"), app_lang("apply"), array("class" => "btn btn-danger", "title" => app_lang('i_want_to_remove_my_account')));
                            }
                            ?>
                        </div>
                    </div>
                </div>
            <?php } ?>

        </div>
    </div>
    <?php echo form_close(); ?>
</div>

<script type="text/javascript">
    $(document).ready(function () {

    });
</script>