Table of Contents

Class TemplateExtender

Namespace
Dynamicweb.Rendering
Assembly
Dynamicweb.Core.dll

Base implementation of Template Extenders. Usually this object is not inherited directly. Inherit one of the implemenations, i.e. Dynamicweb.Frontend.PageTemplateExtender or Dynamicweb.Ecommerce.Products.ProductTemplateExtender.

public abstract class TemplateExtender
Inheritance
TemplateExtender
Derived
Inherited Members

Methods

ExtendTemplate(Template)

This is the method that is invoked when a template extender is found and instantiated. Override this method to manipulate the tags of the passed Template instance.

public virtual void ExtendTemplate(Template template)

Parameters

template Template

The Template instance with the template being extended.

To top