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/public_html/pm/app/Views/projects/client_contacts/index.php
<div class="card">
    <div class="card-header">
        <h6 class="float-start"><?php echo app_lang('client_contacts'); ?></h6>
        <?php
        if ($can_add_remove_project_members && $can_access_clients) {
            echo modal_anchor(get_uri("projects/project_member_modal_form"), "<i data-feather='plus-circle' class='icon-16'></i> " . app_lang('add_contact'), array("class" => "btn btn-outline-light float-end add-member-button", "title" => app_lang('add_contact'), "data-post-project_id" => $project_id, "data-post-add_user_type" => "client_contacts"));
        }
        ?>
    </div>

    <div class="table-responsive">
        <table id="project-client-contacts-table" class="b-b-only no-thead" width="100%">            
        </table>
    </div>
</div>

<script type="text/javascript">
    $(document).ready(function () {
        $("#project-client-contacts-table").appTable({
            source: '<?php echo_uri("projects/project_member_list_data/" . $project_id . "/client_contacts") ?>',
            hideTools: true,
            displayLength: 500,
            columns: [
                {title: ''},
                {title: '', "class": "text-center option w100"}
            ]
        });
    });
</script>