Initial commit

This commit is contained in:
Oliver Davies 2020-03-13 11:17:16 +00:00
commit e1517ecd9d
36 changed files with 2093 additions and 0 deletions
step5-wrapping-up-with-unit-tests/src/Wrapper

View file

@ -0,0 +1,40 @@
<?php
namespace Drupal\my_module\Wrapper;
use Drupal\Component\Datetime\TimeInterface;
use Drupal\node\NodeInterface;
class ArticleWrapper {
private $article;
public function __construct(TimeInterface $time, NodeInterface $node) {
$this->verifyNodeType($node);
$this->time = $time;
$this->article = $node;
}
public function getOriginal(): NodeInterface {
return $this->article;
}
private function verifyNodeType(NodeInterface $node): void {
if ($node->bundle() != 'article') {
throw new \InvalidArgumentException(sprintf(
'%s is not an article',
$node->bundle()
));
}
}
public function isPublishable(): bool {
$created = $this->article->getCreatedTime();
$difference = $this->time->getRequestTime() - $created;
return $difference >= 60 * 60 * 24 * 3;
}
}