Horde_ActiveSync_Message_Task::_checkSendEmpty PHP Метод

_checkSendEmpty() защищенный Метод

Check if a field should be sent to the device even if it is empty.
protected _checkSendEmpty ( string $tag ) : boolean
$tag string The field tag.
Результат boolean
    protected function _checkSendEmpty($tag)
    {
        if ($tag == self::POOMTASKS_BODYTRUNCATED && $this->bodysize > 0) {
            return true;
        }
        return false;
    }