You are here

function mailsystem_admin_get_formatter_classes in Mail System 7.3

Returns a list of classes suitable for formatting email.

@todo: Currently we consider all classes capable of both mail delivery and formatting. If required in the future the mechanism could be extended such that specific classes only serve either as formatter or delivery-system if appropriate.

Return value

array List of the names of classes implementing MailSystemInterface.

1 call to mailsystem_admin_get_formatter_classes()
mailsystem_admin_settings in ./mailsystem.admin.inc
Form constructor for the mailsystem settings form.

File

./mailsystem.admin.inc, line 286
Administrative interface for the mail_system variable.

Code

function mailsystem_admin_get_formatter_classes() {
  return mailsystem_admin_get_delivery_classes();
}