You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/gys_system/helpers/gys_helper.php

17 lines
451 B
PHTML

<?php
function has_security($securitycode) {
$CI = & get_instance();
$CI->load->model('User_model');
return $CI->User_model->user_security($CI->permission->admin()->LMI_SN, $securitycode);
}
function get_product_status($type_code) {
$CI = & get_instance();
$product_status = $CI->lang->line('product_status');
if (isset($product_status[$type_code])) {
return $product_status[$type_code];
}
return '其他';
}