Files
faveo/app/Model/helpdesk/Settings/SocialMedia.php
Shift 43386fd86d Apply Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions.

You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root.

For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
2023-01-03 08:25:25 +00:00

63 lines
1.5 KiB
PHP

<?php
namespace App\Model\helpdesk\Settings;
use Illuminate\Database\Eloquent\Model;
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);
}
if ($key !== '' && $key !== 'redirect') {
$social = $this->where('provider', $provider)->where('key', $key)->first();
} elseif ($key !== 'redirect') {
$social = $this->where('provider', $provider)->pluck('value', 'key')->toArray();
}
if (is_object($social)) {
$social = $social->value;
}
return $social;
}
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 = '';
$social = $this->where('provider', $provider)->where('key', 'status')->first();
if ($social) {
$value = $social->value;
if ($value === '0') {
$check = true;
}
}
return $check;
}
}