You are here

function organigrams_title in Organigrams 7

Get the organigrams name which can be used as page title.

Parameters

object $organigrams: An organigrams entity.

Return value

string A string containing the organigrams name.

1 string reference to 'organigrams_title'
organigrams_menu in ./organigrams.module
Implements hook_menu().

File

./organigrams.module, line 1048
Defines the organigrams functions and entity types.

Code

function organigrams_title($organigrams) {
  return $organigrams->name;
}