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:
parent
fc691424bf
commit
2d06f5e8d4
|
@ -49,6 +49,10 @@ class Post extends Node implements ContentEntityBundleInterface {
|
||||||
$this->set('field_tags', $tags);
|
$this->set('field_tags', $tags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function shouldSendToSocialMedia(): bool {
|
||||||
|
return (bool) $this->get('field_send_to_social_media')->getString();
|
||||||
|
}
|
||||||
|
|
||||||
public function toTweet(): string {
|
public function toTweet(): string {
|
||||||
$parts = [
|
$parts = [
|
||||||
$this->label(),
|
$this->label(),
|
||||||
|
|
Loading…
Reference in a new issue