Merge pull request #13922 from snipe/bug/sc-24097
Created mutator on category checkin_email
This commit is contained in:
commit
9c4fbbe915
1 changed files with 20 additions and 0 deletions
|
@ -247,6 +247,26 @@ class Category extends SnipeModel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* -----------------------------------------------
|
||||||
|
* BEGIN MUTATORS
|
||||||
|
* -----------------------------------------------
|
||||||
|
**/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This sets the checkin_value to a boolean 0 or 1. This accounts for forms or API calls that
|
||||||
|
* explicitly pass the checkin_email field but it has a null or empty value.
|
||||||
|
*
|
||||||
|
* This will also correctly parse a 1/0 if "true"/"false" is passed.
|
||||||
|
*
|
||||||
|
* @param $value
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setCheckinEmailAttribute($value)
|
||||||
|
{
|
||||||
|
$this->attributes['checkin_email'] = (int) filter_var($value, FILTER_VALIDATE_BOOLEAN);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -----------------------------------------------
|
* -----------------------------------------------
|
||||||
* BEGIN QUERY SCOPES
|
* BEGIN QUERY SCOPES
|
||||||
|
|
Loading…
Add table
Reference in a new issue