You are here

public function ServicesClientMappingPlugin::getReaderSummary in Services Client 7.2

Get reader summary text.

Return value

string Reader plugin summary.

1 call to ServicesClientMappingPlugin::getReaderSummary()
ServicesClientMappingPlugin::getSummary in include/mapping.inc

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>';
}