コード例 #1
0
ファイル: Login.php プロジェクト: giovanny751/sst
 function acceso($user = null, $id = NULL)
 {
     $i = 0;
     if (!empty($id)) {
         $user = $this->user_model->validacionusuario(deencrypt_id($id));
         $i = 1;
     }
     $this->session->set_userdata($user[0]);
     if ($i == 1) {
         $ruta = 'index.php/presentacion/principal';
         redirect($ruta, 'location');
     }
 }
コード例 #2
0
 function empresa_el($id)
 {
     try {
         $id = deencrypt_id($id);
         $this->db->set('emp_status', '3');
         $this->db->where('emp_id', $id);
         $this->db->update('empresa');
     } catch (exception $e) {
     }
 }