/var/www/hkosl.com/demo_google/application/views/webadmin/news_index.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
$GLOBALS
["datatable"] = 1;

$page_setting = array(
    
'controller' => current_controller(),
    
'scope' => __('News'),
    
'permission' => array(
        
'view_news'
    
)
);

validate_user_access($page_setting['permission'], 0);

?>

<!DOCTYPE html>
<html lang="en">
<head>
    <?php include_once("head.php"); ?>
</head>

<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">

    <?php include_once("header.php"); ?>

    <?php include_once("menu.php"); ?>

    <!-- Content Wrapper. Contains page content -->
    <div class="content-wrapper" style="min-height: 916px;">
        <!-- Content Header (Page header) -->
        <section class="content-header">
            <h1><?= ($page_setting['scope']) ?>
                <small></small>
            </h1>
            <ol class="breadcrumb">
                <li><a href="<?= admin_url(''); ?>"><?= __('Home'?></a></li>
                <li class="active"><?= ($page_setting['scope']) ?></li>
            </ol>
        </section>

        <!-- Main content -->
        <section class="content">
            <div class="row">
                <div class="col-xs-12">
                    <div class="box">
                        <!--<div class="box-header">
                            <h3 class="box-title">Hover Data Table</h3>
                        </div>-->
                        <!-- /.box-header -->
                        <div class="box-body">
                            <div id="example2_wrapper" class="dataTables_wrapper form-inline dt-bootstrap">
                                <div class="row">
                                    <div class="col-sm-12">

                                        <?= form_open(admin_url($page_setting['controller'] . '/sort'), 'class="form-horizontal form-label-left"'); ?>

                                        <?php if (validate_user_access(['create_news'])) { ?>
                                            <a href="<?= admin_url($page_setting['controller'] . '/create'?>">
                                                <button type="button" class="btn btn-primary pull-right" style="margin-bottom: 10px;">
                                                    <?= __('Create'?>
                                                </button>
                                            </a>
                                        <?php ?>

                                        <?php if (validate_user_access(['update_news'])) { ?>
                                            <button type="submit" class="btn btn-default pull-right" style="margin-bottom: 10px;">
                                                <?= __('Update Sort'?>
                                            </button>
                                        <?php ?>

                                        <div class="clearfix"></div>

                                        <table class="datatable width100p">
                                            <thead>
                                            <tr>
                                                <th style="width: 70px;"><?= __('Sort'?></th>
                                                <th style="width: 120px;"><?= __('Date'?></th>
                                                <th><?= __('Title'?></th>
                                                <th class="tr width1px"><?= __('Action'?></th>
                                            </tr>
                                            </thead>

                                            <tbody>
                                            <?php if (!empty($news_index)) {
                                                foreach (
$news_index as $row) { ?>
                                                    <tr>
                                                        <td>
                                                            <input type="number" name="sort[<?= $row["id"?>]" value="<?= $row["sort"?>" style="width: 50px;"/>
                                                        </td>

                                                        <td>
                                                            <?= $row["date"?>
                                                        </td>

                                                        <td>
                                                            <a href="<?= admin_url($page_setting['controller'] . '/modify/' $row["id"]) ?>"><?= $row["title"?></a>
                                                        </td>

                                                        <td class="tr nowrap">
                                                            <?php if ($row["status"] == 1) { ?>
                                                                <a href="<?= admin_url($page_setting['controller'] . '/status/' $row["id"] . "/0"?>">
                                                                    <button type="button" class="btn btn-success"><?= __('Active'?>
                                                                    </button>
                                                                </a>
                                                            <?php } else { ?>
                                                                <a href="<?= admin_url($page_setting['controller'] . '/status/' $row["id"] . "/1"?>">
                                                                    <button type="button" class="btn btn-warning"><?= __('Inactive'?>
                                                                    </button>
                                                                </a>
                                                            <?php ?>

                                                            <a href="<?= admin_url($page_setting['controller'] . '/modify/' $row["id"]) ?>">
                                                                <button type="button" class="btn btn-warning"><?= __('Modify'?>
                                                                </button>
                                                            </a>

                                                            <?php if (validate_user_access(['delete_news'])) { ?>
                                                                <button type="button" class="btn btn-danger"
                                                                        onclick="confirm_delete('<?= admin_url($page_setting['controller'] . '/delete/' $row["id"]); ?>');">
                                                                    <?= _('Delete'?>
                                                                </button>
                                                            <?php ?>
                                                        </td>
                                                    </tr>
                                                <?php }
                                            } 
?>
                                            </tbody>
                                        </table>
                                        <?= form_close() ?>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <!-- /.box-body -->
                    </div>
                    <!-- /.box -->
                </div>
                <!-- /.col -->
            </div>
            <!-- /.row -->
        </section>
        <!-- /.content -->
    </div>
    <!-- /.content-wrapper -->

    <?php include_once("footer.php"); ?>

</div>
<!-- ./wrapper -->
<?php include_once("script.php"); ?>

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

    });
</script>
</body>
</html>