formate code

master
LMR 1 year ago
parent c1dcd41570
commit 114becf0e2

@ -19,19 +19,14 @@ class Operator_model extends CI_Model
. " AND CONVERT(VARCHAR(100), oi.OPI_Password) = N? ";
$query = $this->HT->query($sql, array($user_code, $password));
//print_r($this->HT->queries);
if ($query->num_rows() > 0)
{
if ($query->num_rows() > 0) {
return 1;
}
else
{
} else {
$author_sql = "SELECT TOP 1 1 FROM tourmanager.dbo.infoAuthors WHERE a_email=? AND a_password=?";
$author_query = $this->HT->query($author_sql, array($user_code, $password));
if ($author_query->num_rows() > 0)
{
if ($author_query->num_rows() > 0) {
return 2;
}
else{
} else {
return FALSE;
}
}
@ -44,13 +39,10 @@ class Operator_model extends CI_Model
. "WHERE oi.OPI_Code = N?";
$query = $this->HT->query($sql, array($user_code));
//print_r($this->HT->queries);
if ($query->num_rows() > 0)
{
if ($query->num_rows() > 0) {
$row = $query->row_array();
return $row;
}
else
{
} else {
return FALSE;
}
}
@ -58,8 +50,7 @@ class Operator_model extends CI_Model
//获取登录用户详细信息
function get_user($user_code)
{
if(empty($user_code))
{
if (empty($user_code)) {
return false;
}
@ -72,19 +63,17 @@ class Operator_model extends CI_Model
. "WHERE oi.OPI_Code = N?";
$query = $this->HT->query($sql, array($user_code));
//print_r($this->HT->queries);
if ($query->num_rows() > 0)
{
if ($query->num_rows() > 0) {
$row = $query->row_array();
return $row;
}
else
{
} else {
return FALSE;
}
}
//获取作者平台的作者信息
public function get_author_user($a_email){
public function get_author_user($a_email)
{
$sql = "SELECT TOP 1
a_id as OPI_SN,
a_email as OPI_Email,
@ -94,13 +83,10 @@ class Operator_model extends CI_Model
FROM tourmanager.dbo.infoAuthors
WHERE a_email=? AND a_active=1";
$query = $this->HT->query($sql, array($a_email));
if ($query->num_rows() > 0)
{
if ($query->num_rows() > 0) {
$row = $query->row_array();
return $row;
}
else
{
} else {
return FALSE;
}
}
@ -109,8 +95,7 @@ class Operator_model extends CI_Model
function get_author($user_code = array())
{
$user_code_str = '';
foreach($user_code as $user_item)
{
foreach ($user_code as $user_item) {
$user_code_str .= "'" . $user_item . "',";
}
$user_code_str .= "'0'";
@ -128,7 +113,8 @@ class Operator_model extends CI_Model
}
//获取作者的昵称
function get_author_nikename($user_code){
function get_author_nikename($user_code)
{
$sql = "
SELECT top 1 isnull(uio.NickName,'') as NickName,uio.customPic, uio.userid, uio.sex, uio.Email,uio.intro
,OPI_SN,OPI_Name,OPI_Email,OPI_FirstName,OPI_Code
@ -163,7 +149,8 @@ class Operator_model extends CI_Model
}
//获取当前站点的作者
public function get_site_user($site_code){
public function get_site_user($site_code)
{
$sql = "SELECT oi.OPI_SN,
oi.OPI_Name,
oi.OPI_Email,

Loading…
Cancel
Save