Changeset 584
- Timestamp:
- Nov 20, 2014 4:35:00 PM (10 years ago)
- Location:
- pro-violet-viettel/sourcecode/application
- Files:
-
- 4 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> -
pro-violet-viettel/sourcecode/application/views/layout/admin/sidebar.php
r461 r584 57 57 58 58 <li class="<?php if(in_array($class,array("user"))) {echo "active";}?>"> 59 <a href=" #" class="dropdown-toggle">59 <a href="<?php echo $base_url; ?>admin/nguoi_dung"> 60 60 <i class="icon-double-angle-right"></i> 61 61 Ngưá»i dùng … … 63 63 </a> 64 64 65 < ul class="submenu">65 <!--ul class="submenu"> 66 66 <li class="<?php if(in_array($class,array("user"))) {echo "active";}?>"> <a href="<?php echo $base_url; ?>admin/nguoi_dung"> KÃch hoạt/ Tạm ngưng </a> </li> 67 67 <li class="<?php if(in_array($class,array("user"))) {echo "active";}?>"> <a href="<?php echo $base_url; ?>admin/nguoi_dung"> Thá»ng kê tà i khoản </a> </li> 68 </ul >68 </ul--> 69 69 </li> 70 70
Note: See TracChangeset
for help on using the changeset viewer.