You are here

function crumbs_InjectedAPI_describeMonoPlugin::titleWithLabel in Crumbs, the Breadcrumbs suite 7.2

Parameters

string $title:

string $label:

File

lib/InjectedAPI/describeMonoPlugin.php, line 32

Class

crumbs_InjectedAPI_describeMonoPlugin
Injected API object for the describe() method of mono plugins.

Code

function titleWithLabel($title, $label) {
  $this
    ->setTitle(t('!key: !value', array(
    '!key' => $label,
    '!value' => $title,
  )));
}