17 lines
340 B
Plaintext
17 lines
340 B
Plaintext
|
|
public function set{%field%}Attr($value)
|
||
|
|
{
|
||
|
|
if (!empty($value)) {
|
||
|
|
$value = serialize($value);
|
||
|
|
}
|
||
|
|
|
||
|
|
return $value;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function get{%field%}Attr($value)
|
||
|
|
{
|
||
|
|
if (!empty($value)) {
|
||
|
|
$value = unserialize($value);
|
||
|
|
}
|
||
|
|
|
||
|
|
return $value;
|
||
|
|
}
|