Apply fixes from StyleCI
This commit is contained in:
committed by
StyleCI Bot
parent
857d3004eb
commit
88f3df2180
@@ -4,54 +4,58 @@ namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SocialMedia extends Model {
|
||||
|
||||
protected $table = "social_media";
|
||||
class SocialMedia extends Model
|
||||
{
|
||||
protected $table = 'social_media';
|
||||
protected $fillable = [
|
||||
'provider',
|
||||
'key',
|
||||
'value',
|
||||
];
|
||||
|
||||
public function getvalueByKey($provider, $key="",$login=true) {
|
||||
|
||||
$social = "";
|
||||
if ($key == 'redirect'&& $login==true) {
|
||||
$social = url('social/login/' . $provider);
|
||||
public function getvalueByKey($provider, $key = '', $login = true)
|
||||
{
|
||||
$social = '';
|
||||
if ($key == 'redirect' && $login == true) {
|
||||
$social = url('social/login/'.$provider);
|
||||
}
|
||||
if($key!=="" && $key !== 'redirect'){
|
||||
if ($key !== '' && $key !== 'redirect') {
|
||||
$social = $this->where('provider', $provider)->where('key', $key)->first();
|
||||
}elseif($key !== 'redirect'){
|
||||
$social = $this->where('provider', $provider)->lists('value','key')->toArray();
|
||||
} elseif ($key !== 'redirect') {
|
||||
$social = $this->where('provider', $provider)->lists('value', 'key')->toArray();
|
||||
}
|
||||
if (is_object($social)) {
|
||||
$social = $social->value;
|
||||
}
|
||||
|
||||
|
||||
return $social;
|
||||
}
|
||||
|
||||
public function checkActive($provider) {
|
||||
$check = "";
|
||||
public function checkActive($provider)
|
||||
{
|
||||
$check = '';
|
||||
$social = $this->where('provider', $provider)->where('key', 'status')->first();
|
||||
if ($social) {
|
||||
$value = $social->value;
|
||||
if ($value === '1') {
|
||||
$check = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $check;
|
||||
}
|
||||
public function checkInactive($provider) {
|
||||
$check = "";
|
||||
|
||||
public function checkInactive($provider)
|
||||
{
|
||||
$check = '';
|
||||
$social = $this->where('provider', $provider)->where('key', 'status')->first();
|
||||
if ($social) {
|
||||
$value = $social->value;
|
||||
if ($value === '0') {
|
||||
$check = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $check;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user