Changeset 584 for pro-violet-viettel/sourcecode/application/modules/admin
- Timestamp:
- Nov 20, 2014 4:35:00 PM (10 years ago)
- Location:
- pro-violet-viettel/sourcecode/application/modules/admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pro-violet-viettel/sourcecode/application/modules/admin/controllers/user.php
r579 r584 32 32 $data['itemsoptions'] = array(10, 25, 50, 100); 33 33 $data['perpage'] = 10; 34 $data['statusoptions'] = array(0=>"Tất cả", 1=>" KÃch hoạt", 2=>"Tạm ngưng");34 $data['statusoptions'] = array(0=>"Tất cả", 1=>"Äã ÄÄng kÜ", 2=>"Dùng thá»"); 35 35 $data['status'] = 0; 36 36 if ($this->input->post('status')) -
pro-violet-viettel/sourcecode/application/modules/admin/models/user_model.php
r579 r584 74 74 return $data; 75 75 } 76 76 77 } -
pro-violet-viettel/sourcecode/application/modules/admin/views/user/listview.php
r573 r584 119 119 </td> 120 120 <td class=" "> 121 <a href="#"><?php echo @$user['username']; ?></a>121 <a><?php echo @$user['username']; ?></a> 122 122 </td> 123 123 <td class=" "> … … 126 126 <td class="hidden-480 "><?php echo $user['acc_balanced']. " VNÄ"; ?></td> 127 127 <td class=" "><?php echo $user['created_time']; ?></td> 128 <td class=" "><?php echo $user['expire_date'];?></td>128 <td class=" "><?php echo isset($user['expire_date']) && strtotime($user['expire_date'])>0 ? date('d/m/Y', strtotime($user['expire_date'])) : '';?></td> 129 129 <td class=" "> 130 130 <?php if(strtotime($user['expire_date'])>time()){ ?> 131 <span class="label label-sm label-success">Äã kÃch hoạt</span>131 <span class="label label-sm label-success">Äã ÄÄng kÜ</span> 132 132 <?php }else{ ?> 133 <span class="label label-sm label-warning"> Tạm ngưng</span>133 <span class="label label-sm label-warning">Dùng thá»</span> 134 134 <?php } ?> 135 135 </td>
Note: See TracChangeset
for help on using the changeset viewer.