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