public function UcAddressesFieldHandler::getOutputFormats in Ubercart Addresses 6.2
Same name and namespace in other branches
- 7 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.
3 methods override UcAddressesFieldHandler::getOutputFormats()
- UcAddressesDateFieldHandler::getOutputFormats in handlers/
uc_addresses.handlers.inc - Implements 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 301 - Contains the UcAddressesFieldHandler class.
Class
- UcAddressesFieldHandler
- Base class for fields used in Ubercart Addresses.
Code
public function getOutputFormats() {
return array();
}