dhii / output-renderer-abstract
Common abstract functionality for output renderers.
Installs: 3 385
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: ^5.4 | ^7.0
- dhii/output-renderer-interface: ^0.2 | ^0.3
- psr/container: ^1.0
Requires (Dev)
- codeclimate/php-test-reporter: <=0.3.2
- dhii/exception-interface: ^0.2-alpha3
- dhii/invocable-interface: ^0.1-alpha1
- dhii/php-cs-fixer-config: ^0.1
- dhii/validation-interface: ^0.1 | ^0.2-alpha1
- phpunit/phpunit: ^4.8
- ptrofimov/xpmock: ^1.1
Suggests
- dhii/container-helper-base: For normalizing context containers
This package is auto-updated.
Last update: 2020-01-07 17:03:27 UTC
README
Common abstract functionality for output renderers.
Details
This package provides abstract functionality for the most common implementations
of output renderers. The classes are meant to implement functionality for
interfaces in dhii/output-renderer-interface
, although of course they can
be used for other purposes. This is a good place to start if you are creating
your own renderer of a new kind. If you are looking for a little more
specialized yet common functionality that extends this, see
dhii/output-renderer-base
.
Classes
StringableRenderCatcherTrait
- Intended forBlockInterface
, which is usually something that contains all data needed to produce output. Takes care of what happens when it is cast to string.RenderCapableTemplateBlockTrait
- Renders a template using an internal context and template.BlockAwareTrait
- Internal functionality for storing and retrieving a block. Does minimal validation. Can be used to back upBlockAwareInterface
.ContextAwareTrait
- Internal functionality for storing and retrieving a context in the form of aContainerInterface
. Can be used to back upContextAwareInterface
.RenderTemplateCapableTrait
- Standardizes the process of rendering a template. Intended to complementRenderCapableTemplateBlockTrait
.RendererAwareTrait
- Internal functionality for storing and retrieving a renderer. Does minimal validation. Can be used to back upRendererAwareInterface
.TemplateAwareTrait
- Internal functionality for storing and retrieving a template. Does minimal validation. Can be used to back upTemplateAwareInterface
.CaptureOutputCapableTrait
- Functionality for capturing the output of a callback.