Dhii/output-renderer-abstract

View on GitHub
src/TemplateAwareTrait.php

Summary

Maintainability
A
3 hrs
Test Coverage
<?php

namespace Dhii\Output;

use Exception as RootException;
use InvalidArgumentException;

/**
 * Functionality for template setting and retrieval.
 *
 * @since 0.1
 */
trait TemplateAwareTrait
{
    /**
     * The template.
     *
     * @since 0.1
     *
     * @var TemplateInterface|null
     */
    protected $template;

    /**
     * Retrieves the template associated with this instance.
     *
     * @since 0.1
     *
     * @return TemplateInterface|null The template.
     */
    protected function _getTemplate()
    {
        return $this->template;
    }

    /**
     * Assigns the template to this instance..
     *
     * @since 0.1
     *
     * @param TemplateInterface|null $template The template.
     */
    protected function _setTemplate($template)
    {
        if ($template !== null && !($template instanceof TemplateInterface)) {
            throw $this->_createInvalidArgumentException($this->__('Invalid template'), null, null, $template);
        }

        $this->template = $template;
    }

    /**
     * Creates a new Dhii invalid argument exception.
     *
     * @since 0.1
     *
     * @param string|Stringable|null $message  The error message, if any.
     * @param int|null               $code     The error code, if any.
     * @param RootException|null     $previous The inner exception for chaining, if any.
     * @param mixed|null             $argument The invalid argument, if any.
     *
     * @return InvalidArgumentException The new exception.
     */
    abstract protected function _createInvalidArgumentException(
        $message = null,
        $code = null,
        RootException $previous = null,
        $argument = null
    );

    /**
     * Translates a string, and replaces placeholders.
     *
     * @since 0.1
     * @see   sprintf()
     *
     * @param string $string  The format string to translate.
     * @param array  $args    Placeholder values to replace in the string.
     * @param mixed  $context The context for translation.
     *
     * @return string The translated string.
     */
    abstract protected function __($string, $args = [], $context = null);
}