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/conradinvestmentgroup.com/pm/app/Views/projects/comments/reply_form.php
<?php echo form_open(get_uri("projects/save_comment"), array("class" => "reply-form general-form", "role" => "form")); ?>
<?php
$parent_id = 0;
if (isset($comment_id)) {
    $parent_id = $comment_id;
}
?>
<div class="mb15 pr15 d-flex">
    <div class="flex-shrink-0">
        <div class="avatar avatar-sm pr15">
            <img src="<?php echo get_avatar($login_user->image); ?>" alt="..." />
        </div>
    </div>

    <div class="w-100">
        <div id="<?php echo "reply-dropzone-" . $parent_id; ?>"  class="post-dropzone form-group">
            <input type="hidden" name="comment_id" value="<?php echo $parent_id; ?>">

            <?php
            echo form_textarea(array(
                "name" => "description",
                "class" => "form-control comment_reply_description",
                "placeholder" => app_lang('write_a_reply'),
                "data-rule-required" => true,
                "data-msg-required" => app_lang("field_required"),
                "data-rich-text-editor" => true,
                "data-mention" => true,
                "data-mention_source" => get_uri("projects/get_member_suggestion_to_mention"),
                "data-mention_project_id" => $project_id
            ));
            ?>
            <?php echo view("includes/dropzone_preview"); ?>
            <footer class="card-footer b-a clearfix">
                <div class="float-start"><?php echo view("includes/upload_button"); ?></div>
                <button class="btn btn-primary float-end" type="submit"><i data-feather='corner-up-left' class='icon-16'></i> <?php echo app_lang("post_reply"); ?></button>
            </footer>
        </div>
    </div>
</div>
<?php echo form_close(); ?>


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

        $('.comment_reply_description').appMention({
            source: "<?php echo_uri("projects/get_member_suggestion_to_mention"); ?>",
            data: {project_id: <?php echo $project_id; ?>}
        });

        var dropzoneId = "<?php echo 'reply-dropzone-' . $parent_id; ?>";

        $(".reply-form").appForm({
            isModal: false,
            onSuccess: function (result) {
                $(".reply-form").parent().html("");
                var $triggerTarget = $("#reload-reply-list-button-" + "<?php echo $parent_id; ?>");
                $triggerTarget.trigger("click");
                $triggerTarget.siblings(".view-replies").hide();
                if (window.formDropzone[dropzoneId]) {
                    window.formDropzone[dropzoneId].removeAllFiles();
                }
            }
        });
    });
</script>