first cut at group chooser UI
This commit is contained in:
parent
6da84027af
commit
61915a524d
5 changed files with 66 additions and 4 deletions
10
boot.php
10
boot.php
|
@ -2076,10 +2076,14 @@ function micropro($contact, $redirect = false, $class = '') {
|
|||
$sparkle = ' sparkle';
|
||||
}
|
||||
}
|
||||
|
||||
$click = ((x($contact,'click')) ? ' onclick="' . $contact['click'] . '" ' : '');
|
||||
if($click)
|
||||
$url = '';
|
||||
return '<div class="contact-block-div' . $class . '"><a class="contact-block-link' . $class . $sparkle
|
||||
. '" href="' . $url . '" ><img class="contact-block-img' . $class . $sparkle . '" src="' . $contact['micro']
|
||||
. '" title="' . $contact['name'] . ' [' . $contact['url'] . ']" alt="' . $contact['name'] . '" /></a></div>' . "\r\n";
|
||||
. (($click) ? ' fakelink' : '') . '" '
|
||||
. (($url) ? '" href="' . $url . '"' : '') . $click . ' ><img class="contact-block-img' . $class . $sparkle . '" src="'
|
||||
. $contact['micro'] . '" title="' . $contact['name'] . ' [' . $contact['url'] . ']" alt="' . $contact['name']
|
||||
. '" /></a></div>' . "\r\n";
|
||||
}}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue