/**
     * {@inheritDoc}
     * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderLeft()
     */
    public function hExtendIndiHeaderLeft(IndividualController $ctrlIndi)
    {
        $res = '';
        $dindi = new Individual($ctrlIndi->getSignificantIndividual());
        $titles = $dindi->getTitles();
        if (count($titles) > 0) {
            $res = '
	            <dl>
	               <dt class="label">' . I18N::translate('Titles') . '</dt>';
            foreach ($titles as $title => $props) {
                $res .= '<dd class="field">' . $title . ' ' . FunctionsPrint::getListFromArray($props) . '</dd>';
            }
            $res .= '</dl>';
        }
        return array('indi-header-titles', $res);
    }