drop_down_myaccount.tpl.php in Drop Down Login 7
Template for myaccount dropdown.
Available variables
- $myaccount_text: drop down myaccount button/link text
- $myaccount_url: url for myaccount button/link
- $myaccount_links: myaccount drop down additional links
sorted by weight.
File
theme/drop_down_myaccount.tpl.phpView source
<?php
/**
* @file
* Template for myaccount dropdown.
*
* Available variables
* - $myaccount_text: drop down myaccount button/link text
* - $myaccount_url: url for myaccount button/link
* - $myaccount_links: myaccount drop down additional links
* sorted by weight.
*/
?>
<div class="drop-down-login-container" id="drop-down-login-wrapper">
<?php
if (!empty($profile_image)) {
?>
<a href="<?php
print $myaccount_url;
?>" class="login my-account">
<img class="profile-pic" src="<?php
print $profile_image;
?>" alt="<?php
print t('Profile picture');
?>">
</a>
<?php
}
else {
?>
<a href="<?php
print $myaccount_url;
?>" class="login button">
<span><span><?php
print $myaccount_text;
?></span></span>
</a>
<?php
}
?>
<div class="dropdown" style="display: none;">
<ul class="menu">
<li>
<a href="<?php
print url('user');
?>">
<div>
<strong><?php
print $account->name;
?></strong>
</div>
<span><?php
print t('View profile');
?></span>
</a>
</li>
<?php
if (!empty($myaccount_links)) {
?>
<?php
foreach ($myaccount_links as $item) {
?>
<li>
<?php
print l($item['menu']['menu_name'], $item['menu']['menu_url']);
?>
</li>
<?php
}
?>
<?php
}
?>
<li>
<?php
print l(t('Log out'), 'user/logout');
?>
</li>
</ul>
</div>
</div>