You are here

function services_entityreference_format_plural in Services Entity API 7.2

Format an entity type as plural

1 call to services_entityreference_format_plural()
services_entityreference_services_resources in modules/services_entityreference/services_entityreference.module
Implements hook_services_resources_alter()

File

modules/services_entityreference/services_entityreference.module, line 233

Code

function services_entityreference_format_plural($name) {

  // For most cases adding an 's' will suffice
  $name = $name . 's';

  // Allow other modules to change the name if they want to.
  drupal_alter('services_entityreference_format_plural', $name);
  return $name;
}