ok

Mini Shell

Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/user/route/
Upload File :
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/user/route/index.php

<?php
$currency_symbol = $this->customlib->getSchoolCurrencyFormat();
 $student_route = $studentList['vehroute_id'];

?>
<div class="content-wrapper">
    <section class="content-header">
        <h1>
            <i class="fa fa-bus"></i> <?php echo $this->lang->line('transport_routes'); ?> </h1>
    </section>
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-md-12">
                <div class="box box-primary">
                    <div class="box-header ptbnull">
                        <h3 class="box-title titlefix"> <?php echo $this->lang->line('transport')." ".$this->lang->line('routes'); ?></h3>
                        <div class="box-tools pull-right">
                        </div>
                    </div>
                    <div class="box-body">
                        <div class="table-responsive mailbox-messages">
                            <div class="download_label"><?php echo $this->lang->line('transport_routes'); ?></div>
                            <table class="table table-striped table-bordered table-hover example">
                                <thead>
                                    <tr>
                                        <th><?php echo $this->lang->line('route_title'); ?>
                                        </th>

                                        <th class=""><?php echo $this->lang->line('vehicle'); ?>
                                        </th>
                                    </tr>
                                </thead>
                                <tbody>
                                    <?php if (empty($listroute)) {
                                        ?>
                                        <tr>
                                            <td colspan="12" class="text-danger text-center"><?php echo $this->lang->line('no_record_found'); ?></td>
                                        </tr>
                                        <?php
                                    } else {
                                        $count = 1;

                                        foreach ($listroute as $list_key => $data) {
                                            ?>
                                            <tr>
                                                <td class="mailbox-name"> <?php echo $data['route_title'] ?></td>

                                                <td class=""> 
                                                    <?php
                                                    if (empty($data['vehicles'])) {
                                                        ?>
                                                        <span class="text text-danger"><?php echo $this->lang->line('no_vehicle_allotted_to_this_route'); ?></span>
                                                        <?php
                                                    } else {
                                                        echo "<ul class='nav nav-list'>";
                                                        foreach ($data['vehicles'] as $vec_key => $vec_value) {
                                                            ?>
                                                <li>
                                                    <a href="#">
                                                        <i class="fa fa-bus"></i>&nbsp;&nbsp;

                                                        <?php
                                                        echo $vec_value->vehicle_no;
                                                        if ($vec_value->vec_route_id == $student_route) {
                                                            echo " <span class='label label-info'>".$this->lang->line('assigned')."</span>";
                                                            ?>
                                                            <span class="label label-info" id="bus_allot" data-vehrouteid="<?php
                                                            echo
                                                            $vec_value->vec_route_id;
                                                            ?>"><i class="fa fa-eye"></i> <?php echo $this->lang->line('click')." ".$this->lang->line('to')." ".$this->lang->line('view');?></span>
                                                                  <?php
                                                              }
                                                              ?>

                                                        <br>
                                                    </a>
                                                </li>
                                                <?php
                                            }
                                            echo "</ul>";
                                        }
                                        ?>


                                        </ul>
                                        </td>
                                        </tr>
                                        <?php
                                    }
                                    $count++;
                                }
                                ?>
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
            </div>  
        </div>
        <div class="row">           
            <div class="col-md-12">
            </div>
        </div>
    </section>
</div>


<div id="busDetailModal"  class="modal fade"  tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
                <h4 class="modal-title"></h4>
            </div>
            <div class="modal-body">

            </div>

        </div>
    </div>
</div>

<script type="text/javascript">

    var base_url = '<?php echo base_url() ?>';
    $(document).on('click', '#bus_allot', function () {
        $('.modal-title').html("");
        $('.modal-body').html("");
        var vehrouteid = $(this).data('vehrouteid');

        $('.modal-title').html("<?php echo $this->lang->line('vehicle')." ".$this->lang->line('details');?>");
        $.ajax({
            type: "POST",
            url: base_url + "user/route/getbusdetail",
            data: {'vehrouteid': vehrouteid},
            dataType: "json",
            success: function (response) {
                console.log(response);
                var data = "";
                data += '<div class="row">';
                data += '<div class="col-md-12">';
                data += '<div class="lead text text-center"><b>Route: ' + response.route_title + '</b></div>';
                data += '<table class="table table-striped table-hover">';
                data += '<tbody>';
                data += '<tr>';
                data += '<td><?php echo $this->lang->line('vehicle')." ".$this->lang->line('no');?>:</td>';
                data += '<td>' + response.vehicle_no + '</td>';
                data += '</tr>';
                data += '<tr>';
                data += '<td><?php echo $this->lang->line('vehicle')." ".$this->lang->line('model'); ?>:</td>';
                data += '<td>' + response.vehicle_model + '</td>';
                data += '</tr>';
                data += '<tr>';
                data += '<td><?php echo $this->lang->line('made');?></td>';
                data += '<td>' + response.manufacture_year + '</td>';
                data += '</tr>';
                data += '<tr>';
                data += '<td><?php echo $this->lang->line('driver')." ".$this->lang->line('name');?></td>';
                data += '<td>' + response.driver_name + '</td>';
                data += '</tr>';
                data += '<tr>';
                data += '<td><?php echo $this->lang->line('driver')." ".$this->lang->line('licence')?></td>';
                data += '<td>' + response.driver_licence + '</td>';
                data += '</tr>';
                data += '<tr>';
                data += '<td><?php echo $this->lang->line('driver')." ".$this->lang->line('contact');?></td>';
                data += '<td>' + response.driver_contact + '</td>';
                data += '</tr>';
                data += '</tbody>';
                data += '</table>';
                data += '</div>';
                data += '</div>';

                $('.modal-body').html(data);
                $("#busDetailModal").modal('show');
            }
        });
    });
</script>

Zerion Mini Shell 1.0