[
'modal' => true,
'title' => "GGBN Member Details",
'width' => "800px",
'id' => 'logodiv',
'class' => "feedbackclass",
'buttons' => [ ]
],
'id' => 'logodiv',
'class' => "feedbackclass"
] );
echo "
";
// echo Html::button('Close', ['class' => 'btn btn-primary', 'name' => 'feedback-button', 'id'=>'close-button']);
Dialog::end ();
$i = 0;
?>
Click member logos to learn more
";
echo "
" . "
" . "
" . "Name: | " . $idx . " |
" . "City: | " . $partner ['city'] . " |
";
echo $partner ['CITES_code'] ? "CITES code: | " . $partner ['CITES_code'] . " |
" : "";
echo "Member since: | " . $partner ['dateOfJoining'] . " |
" . "Status: | " . $partner ['memberStatus'] . " Member" . " |
";
echo $partner ['onlineSince'] ? "Online since: | " . $partner ['onlineSince'] . " |
No. Records @ GGBN: | " . $counts [$idx] . " |
" : "";
if (! empty ( $contacts [$idx] )) {
echo "Contact(s): ";
foreach ( $contacts [$idx] as $contact )
if (! empty ( $contact ))
echo "- " . $contact [0] . ", email
";
echo " |
";
}
if (! empty ( $collectionsncd [$idx] )){
if($partner ['CultureCollection']) {
echo "
DNA & Culture Collection:
"; }
else {
echo "DNA & Tissue Collection:
"; }
foreach($collectionsncd[$idx] as $collectionncd){
echo $collectionncd . "
";
}
}
if (! empty ($children)) {
echo "DNA & Culture Collections:
";
echo $children; }
if (! empty ( $addressncd [$idx] ) || ! empty ( $contactdetailsncd ) || ! empty ( $descriptionsncd )) {
echo "Institution metadata:
";
if (! empty ( $addressncd [$idx] ))
echo $addressncd [$idx]."";
if (! empty ( $contactdetailsncd [$idx] ))
echo $contactdetailsncd [$idx]."";
if (! empty ( $descriptionsncd [$idx] ))
echo $descriptionsncd [$idx]."";
}
echo "" . "
";
$i += 1;
}
?>