Merge pull request #2019 from rabuzarus/0611_directory

simple photo_menu for directory
2022.09-rc
Tobias Diekershoff 2015-11-07 06:54:16 +01:00
commit 4e7bf0028c
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -152,6 +152,8 @@ function directory_content(&$a) {
else { else {
$location_e = $location; $location_e = $location;
} }
$photo_menu = array(array(t("View Profile"), zrl($profile_link)));
$entry = array( $entry = array(
'id' => $rr['id'], 'id' => $rr['id'],
@ -168,6 +170,7 @@ function directory_content(&$a) {
'marital' => $marital, 'marital' => $marital,
'homepage' => $homepage, 'homepage' => $homepage,
'about' => $about, 'about' => $about,
'photo_menu' => $photo_menu,
); );