vcardfield.tpl.php in VCard Field 7
1 theme call to vcardfield.tpl.php
- vcardfield_field_formatter_view in ./
vcardfield.module - Implements hook_field_formatter_view().
File
vcardfield.tpl.phpView source
<?php
/*
field array
$$variables
vCard available values
$prefix
$first_name
$last_name
$suffix
$full_name
$photo
$title
$organization
$address_type
$address
$city
$region
$country
$phone_default
$phone_cell
$phone_fax
$phone_home
$email
$link // contact URL
Vcard link info
$label - Link label user data
$vcard_url - URL for custom formatting
$vcard_link - full link to get vcard
*/
?>
<div class="vcardfield-wrapper <?php
echo $classes . ' ' . $zebra;
?>">
<?php
echo $full_name;
?><br />
<?php
echo $vcard_link;
?>
</div>