HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dmstechonline/crm.dmstech.online/application/views/admin/projects/project_tickets.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<?php
    echo form_hidden('project_id', $project->id);
    echo '<div class="clearfix"></div>';
    if (((get_option('access_tickets_to_none_staff_members') == 1 && !is_staff_member()) || is_staff_member())) {
        echo '<a href="' . admin_url('tickets/add?project_id=' . $project->id) . '" class="tw-mb-4 btn btn-primary"> <i class="fa-regular fa-plus tw-mr-1"></i>' . _l('new_ticket') . '</a>';
    }

?>
<div class="panel_s panel-table-full">
    <div class="panel-body">
        <?php echo AdminTicketsTableStructure('tickets-table'); ?>
    </div>
</div>