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/clients/contacts/modal_form.php
<?php echo form_open(get_uri("clients/save_contact"), array("id" => "contact-form", "class" => "general-form", "role" => "form", "autocomplete" => "false")); ?>
<div class="modal-body clearfix">
    <?php echo view("clients/contacts/contact_general_info_fields"); ?>
</div>
<div class="modal-footer">
    <div id="link-of-add-contact-modal" class="hide">
        <?php echo modal_anchor(get_uri("clients/add_new_contact_modal_form"), "", array()); ?>
    </div>

    <button type="button" class="btn btn-default" data-bs-dismiss="modal"><span data-feather="x" class="icon-16"></span> <?php echo app_lang('close'); ?></button>

    <?php if ($add_type == "multiple") { ?>
        <button id="save-and-add-button" type="button" class="btn btn-primary"><span data-feather="check-circle" class="icon-16"></span> <?php echo app_lang('save_and_add_more'); ?></button>
    <?php } else { ?>
        <button type="submit" class="btn btn-primary"><span data-feather="check-circle" class="icon-16"></span> <?php echo app_lang('save'); ?></button>
    <?php } ?>    
</div>
<?php echo form_close(); ?>

<script type="text/javascript">
    $(document).ready(function () {
        var addType = "<?php echo $add_type; ?>";
        //send data to show the task after save
        window.showAddNewModal = false;

        $("#save-and-add-button").click(function () {
            window.showAddNewModal = true;
            $(this).trigger("submit");
        });

        window.contactForm = $("#contact-form").appForm({
            closeModalOnSuccess: false,
            onSuccess: function (result) {
                if (addType === "multiple") {
                    //add multiple contacts
                    var $addMultipleContactsLink = $("#link-of-add-contact-modal").find("a");
                    $addMultipleContactsLink.attr("data-title", "<?php echo app_lang('add_multiple_contacts') ?>");
                    $addMultipleContactsLink.attr("data-post-client_id", result.client_id);
                    $addMultipleContactsLink.attr("data-post-add_type", "multiple");

                    $addMultipleContactsLink.trigger("click");
                } else {
                    $("#contact-table").appTable({newData: result.data, dataId: result.id});
                    window.contactForm.closeModal();
                }
            }
        });
        setTimeout(function () {
            $("#first_name").focus();
        }, 200);
    });
</script>