headTitle($this->translate('My Profile')); // Set up breadcrumbs: $this->layout()->breadcrumbs = '
| =$this->transEsc('Preferred Library')?>: | $selected = (isset($this->profile['home_library']) && $this->profile['home_library'] != "") ? $this->profile['home_library'] : $this->defaultPickupLocation ?>$profile = $this->profile; $profile['phone'] = $this->translate($this->profile['phone']) ; $profile['zip'] = $this->translate($this->profile['zip']) ; $profile['group'] = $this->translate("BIBBRoles::" .$this->profile['group']) ; /* switch ($profile['group']) { case "HB" : $profile['group'] = "BIBB-Mitarbeiter"; break; case "EM" : $profile['group'] = "Ehemaliger Mitarbeiter"; break; case "GAST" : $profile['group'] = "Gastwissenschaftler"; break; case "HOE" : $profile['group'] = "Hoehns"; break; case "L" : $profile['group'] = "Bibliothek"; break; case "S" : $profile['group'] = "Bibliotheksmitarbeiter"; break; default : $profile['group'] = "Daten nicht erfasst"; } */ echo $this->renderArray( $arrTemplate, $profile, [ $this->transEsc('Address') . ' 1' => 'address1', $this->transEsc('Address') . ' 2' => 'address2', $this->transEsc('Department') => 'department', $this->transEsc('Roomnumber') => 'roomnumber', $this->transEsc('Zip') => 'zip', $this->transEsc('City') => 'city', $this->transEsc('Country') => 'country', $this->transEsc('Phone Number') => 'phone', $this->transEsc('Group') => 'group', $this->transEsc('Expires') => 'expiration_date' ] ); ?> |
|---|