public function ServicesClientMappingPlugin::getFormatterSummary in Services Client 7.2
Get formatter summary text.
Return value
string Formatter plugin summary.
1 call to ServicesClientMappingPlugin::getFormatterSummary()
File
- include/
mapping.inc, line 279
Class
- ServicesClientMappingPlugin
- Mapping plugin wrapper which represents mapping row.
Code
public function getFormatterSummary() {
$formatter = $this
->getFormatter();
return !empty($formatter) ? $formatter
->getSummary() : '<b>NO FORMATTER</b>';
}