Pimcore\Model\Document\Tag\Date::getForWebserviceExport PHP Метод

getForWebserviceExport() публичный Метод

Returns the current tag's data for web service export
public getForWebserviceExport ( $document = null, mixed $params = [] ) : array
$params mixed
Результат array
    public function getForWebserviceExport($document = null, $params = [])
    {
        if ($this->date) {
            return $this->date->getTimestamp();
        } else {
            return null;
        }
    }