Add a method to check if send to social media

Add a method to check if a post should be sent automatically to social
media.

References #249
This commit is contained in:
Oliver Davies 2020-10-07 22:54:56 +01:00
parent fc691424bf
commit 2d06f5e8d4

View file

@ -49,6 +49,10 @@ class Post extends Node implements ContentEntityBundleInterface {
$this->set('field_tags', $tags);
}
public function shouldSendToSocialMedia(): bool {
return (bool) $this->get('field_send_to_social_media')->getString();
}
public function toTweet(): string {
$parts = [
$this->label(),