Jarves\ContentRender::addType PHP Method

addType() public method

public addType ( string $type, AbstractType $contentType )
$type string
$contentType Jarves\ContentTypes\AbstractType
    public function addType($type, $contentType)
    {
        $this->types[$type] = $contentType;
        if ($contentType instanceof ContentRendererAwareContentType) {
            $contentType->setContentRenderer($this);
        }
    }