Craft\Seomatic_MetaFieldType::prepValueFromPost PHP Method

prepValueFromPost() public method

[prepValueFromPost description]
public prepValueFromPost ( [type] $value ) : none
$value [type]
return none n/a
    public function prepValueFromPost($value)
    {
        $result = null;
        if (empty($value)) {
            $result = $this->prepValue($value);
        } else {
            $result = new Seomatic_MetaFieldModel($value);
            $result = $this->prepValue($result);
        }
        return $result;
    }