public function Poll::setResultVoteAllow in Poll 8
Sets the time when this feed was queued for refresh, 0 if not queued.
Parameters
int $result_vote_allow: The timestamp of the last refresh.
Return value
\Drupal\poll\PollInterface The class instance that this method is called on.
Overrides PollInterface::setResultVoteAllow
File
- src/
Entity/ Poll.php, line 132
Class
- Poll
- Defines the poll entity class.
Namespace
Drupal\poll\EntityCode
public function setResultVoteAllow($result_vote_allow) {
$this
->set('result_vote_allow', $result_vote_allow);
return $this;
}