You are here

public function UcAddressesFieldHandler::getOutputFormats in Ubercart Addresses 7

Same name and namespace in other branches
  1. 6.2 handlers/UcAddressesFieldHandler.class.php \UcAddressesFieldHandler::getOutputFormats()

Returns an array of possible output formats the handler supports.

Should be overriden by handlers who have more than one way of outputting a value.

@access public

Return value

array An array of output formats that the handler supports.

1 call to UcAddressesFieldHandler::getOutputFormats()
UcAddressesFieldHandler::getTokenInfo in handlers/UcAddressesFieldHandler.class.php
Returns supported tokens.
2 methods override UcAddressesFieldHandler::getOutputFormats()
UcAddressesUcCountryFieldHandler::getOutputFormats in handlers/ubercart.handlers.inc
Implements UcAddressesFieldHandler::getOutputFormats().
UcAddressesUcZoneFieldHandler::getOutputFormats in handlers/ubercart.handlers.inc
Implements UcAddressesFieldHandler::getOutputFormats().

File

handlers/UcAddressesFieldHandler.class.php, line 362
Contains the UcAddressesFieldHandler class.

Class

UcAddressesFieldHandler
Base class for fields used in Ubercart Addresses.

Code

public function getOutputFormats() {
  return array();
}