Source of file PlaceholderGroup.php
Size: 0,958 Bytes - Last Modified: 2019-06-27T09:09:04+00:00
/home/vagrant/www/document-templates/src/TemplateDataSources/PlaceholderGroup.php
| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | <?phpnamespace BWF\DocumentTemplates\TemplateDataSources; const TYPE_SINGLE_PLACEHOLDER = 'single'; const TYPE_ITERABLE_PLACEHOLDER = 'iterable'; class PlaceholderGroup implements PlaceholderGroupInterface, \JsonSerializable {protected $name; protected $type; protected $placeholders; /** * Placeholder constructor. * @param $name * @param $placeholders * @param $type */public function __construct($name, $placeholders, $type) { $this->name = $name; $this->placeholders = $placeholders; $this->type = $type; } public function getName() { return $this->name; } public function getPlaceholders() { return $this->placeholders; } public function jsonSerialize() { return [ 'name' => $this->getName(), 'type' => $this->type, 'placeholders' => $this->getPlaceholders() ]; } } |