Esempio n. 1
0
					<?php 
            if ($image == 1) {
                ?>
							<a class="pum_link" href="<?php 
                echo $link;
                ?>
">
							<a class="pum_link" href="<?php 
                echo $link;
                ?>
">
								<img class="avatar jomTips" src="<?php 
                echo $uimage;
                ?>
" title="<?php 
                echo cAvatarTooltip($user);
                ?>
" alt="<?php 
                echo 'Avatar Image';
                ?>
" border="0" width="48" height="48" />
							</a>
							<?php 
            }
            ?>
					</div>
				</div>
		        <!-- pum_avatar end here -->
				
				<!-- pum_user_info start here -->
				<div class="pum_user_info">
Esempio n. 2
0
			    <ul class="cThumbList clrfix">
			    	<?php 
        for ($i = 0; $i < count($onlineMembers); $i++) {
            ?>
			    	<?php 
            $row =& $onlineMembers[$i];
            ?>
					<li>
						<a href="<?php 
            echo CRoute::_('index.php?option=com_community&view=profile&userid=' . $row->id);
            ?>
"><img class="avatar jomTips" src="<?php 
            echo $row->user->getThumbAvatar();
            ?>
" title="<?php 
            echo cAvatarTooltip($row->user);
            ?>
" width="45" height="45" alt="<?php 
            echo $this->escape($row->user->getDisplayName());
            ?>
" /></a>
					</li>
					<?php 
        }
        ?>
				</ul>
			</div>
			<?php 
    }
    ?>
			<?php 
Esempio n. 3
0
			<div class="app-box-content">
				<ul class="cThumbList clrfix">
				<?php 
        if ($blockedMembers) {
            foreach ($blockedMembers as $member) {
                ?>
						<li>
								<a href="<?php 
                echo CUrlHelper::userLink($member->id);
                ?>
">
										<img border="0" height="45" width="45" class="avatar jomTips" src="<?php 
                echo $member->getThumbAvatar();
                ?>
" title="<?php 
                echo cAvatarTooltip($member);
                ?>
" alt="" />
								</a>
						</li>
				<?php 
            }
        }
        ?>
				</ul>
			</div>
			
			<div class="app-box-footer">
				<a href="<?php 
        echo CRoute::_('index.php?option=com_community&view=events&task=viewguest&eventid=' . $event->id . '&type=' . COMMUNITY_EVENT_STATUS_BLOCKED);
        ?>
Esempio n. 4
0
 /**
  * Return the html formatted tooltip
  */
 public function getTooltip()
 {
     if (!$this->_tooltip) {
         require_once JPATH_ROOT . DS . 'components' . DS . 'com_community' . DS . 'libraries' . DS . 'tooltip.php';
         $this->_tooltip = cAvatarTooltip($this);
     }
     return $this->_tooltip;
 }