This commit is contained in:
Manish Verma
2016-12-13 18:18:25 +05:30
parent fc98add11c
commit 2d8e640e9b
2314 changed files with 97798 additions and 75664 deletions

View File

@@ -10,4 +10,23 @@ class CommonSettings extends BaseModel
protected $fillable = [
'status', 'option_name', 'option_value', 'optional_field', 'created_at', 'updated_at',
];
public function getStatus($option_name){
$status ="";
$schema = $this->where('option_name',$option_name)->first();
if($schema){
$status = $schema->status;
}
return $status;
}
public function getOptionValue($option,$field=''){
$schema = $this->where('option_name',$option);
if($field!=""){
$schema = $schema->where('optional_field',$field);
return $schema->first();
}
$value = $schema->get();
return $value;
}
}

View File

@@ -14,4 +14,4 @@ class Followup extends BaseModel
'id', 'name', 'status', 'condition', 'created_at', 'updated_at',
];
}
}

View File

@@ -4,58 +4,54 @@ 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;
}
}