2020-08-12 19:28:19 +00:00
|
|
|
<?php
|
|
|
|
|
2020-09-04 19:56:04 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Install, update and uninstall functions for opdavies_blog.
|
|
|
|
*/
|
|
|
|
|
2020-08-12 19:28:19 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-08-24 08:26:44 +00:00
|
|
|
use Drupal\opdavies_blog\Repository\PostRepository;
|
2020-08-12 19:28:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark existing blog posts as sent to social media.
|
|
|
|
*/
|
2020-08-24 08:26:44 +00:00
|
|
|
function opdavies_blog_update_8001(): void {
|
2020-08-12 19:28:19 +00:00
|
|
|
$posts = \Drupal::service(PostRepository::class)->getAll();
|
|
|
|
|
|
|
|
foreach ($posts as $post) {
|
2020-11-10 19:51:53 +00:00
|
|
|
$post->markAsSentToSocialMedia();
|
2020-08-12 19:28:19 +00:00
|
|
|
$post->save();
|
|
|
|
}
|
|
|
|
}
|