You are here

abstract public function TaxonomyDisplayTermDisplayHandler::displayTerm in Taxonomy display 7

Render the output to be displayed when the user views the taxonomy term.

Parameters

termObject $term: The taxonomy term to be displayed.

mixed $options: The data that was stored on behalf of the handler resulting from the return of the TaxonomyDisplayHandlerForm::formSubmit implementation.

Return value

array The build the user will see when viewing the term.

See also

TaxonomyDisplayHandlerForm::formSubmit()

taxonomy_term_page()

2 methods override TaxonomyDisplayTermDisplayHandler::displayTerm()
TaxonomyDisplayTermDisplayHandlerCore::displayTerm in handlers/term/core.inc
Build our output to be rendered to the user.
TaxonomyDisplayTermDisplayHandlerHidden::displayTerm in handlers/term/hidden.inc
Do not display anything to the user, we return an empty array.

File

classes/term_display.inc, line 22

Class

TaxonomyDisplayTermDisplayHandler
Abstract class for exposing term display to manipulation.

Code

public abstract function displayTerm($term, $options = NULL);