Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/mautic.corals.io/app/bundles/LeadBundle/Resources/views/Note/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/mautic.corals.io/app/bundles/LeadBundle/Resources/views/Note/note.html.twig
{#
  Variables:
    - note
    - lead
    - permissions
#}
{% set icon = 'fa-file-text' %}
{% if 'email' == note.type %}
    {% set icon = 'fa-send' %}
{% elseif 'call' == note.type %}
    {% set icon = 'fa-phone' %}
{% elseif 'meeting' == note.type %}
    {% set icon = 'fa-group' %}
{% endif %}
<li id="LeadNote{{ note.id }}">
    <div class="panel ">
        <div class="panel-body np box-layout">
            <div class="height-auto icon bdr-r col-xs-1 text-center">
                <h3><i class="fa fa-lg fa-fw {{ icon }}"></i></h3>
            </div>
            <div class="media-body col-xs-11 pa-10">
                <div class="pull-right btn-group">
                    {% if permissions['edit'] %}
                        <a class="btn btn-default btn-xs" href="{{ url('mautic_contactnote_action', {'leadId': lead.id, 'objectAction': 'edit', 'objectId': note.id}) }}" data-toggle="ajaxmodal" data-target="#MauticSharedModal" data-header="{{ 'mautic.lead.note.header.edit'|trans }}"><i class="ri-edit-line"></i></a>
                    {% endif %}
                    {% if permissions['delete'] %}
                        <a class="btn btn-default btn-xs" data-toggle="confirmation"
                           href="{{ path('mautic_contactnote_action', {'objectAction': 'delete', 'objectId': note.id, 'leadId': lead.id}) }}"
                           data-message="{{ 'mautic.lead.note.confirmdelete'|trans|e }}"
                           data-confirm-text="{{ 'mautic.core.form.delete'|trans|e }}"
                           data-confirm-callback="executeAction"
                           data-cancel-text="{{ 'mautic.core.form.cancel'|trans|e }}">
                            <i class="ri-delete-bin-line text-danger"></i>
                        </a>
                    {% endif %}
                </div>
                {{ note.text|purify }}
                <div class="mt-15 text-muted">
                  <i class="ri-time-line fa-fw"></i> <span class="small">{{ dateToFullConcat(note.dateTime) }}</span>
                  <i class="ri-user-6-line fa-fw"></i> <span class="small">{{ note.createdByUser }}</span>
                </div>
            </div>
        </div>
    </div>
</li>

Spamworldpro Mini