Пример #1
0
echo JText::_('COM_TIENDA_PROFILE_INFORMATION');
?>
                </th>
            </tr>
            </thead>
            <tbody>
            <tr>
                <th style="width: 100px;">
                    <?php 
echo JText::_('COM_TIENDA_BASICS');
?>
                </th>
                <td>
                    <?php 
Tienda::load('TiendaHelperUser', 'helpers.user');
$userinfo = TiendaHelperUser::getBasicInfo(JFactory::getUser()->id);
if (empty($userinfo->user_id)) {
    echo JText::_('COM_TIENDA_PLEASE_CLICK_EDIT_TO_DEFINE_YOUR_BASIC_PROFILE_INFORMATION');
} else {
    echo $userinfo->first_name . " " . $userinfo->last_name . "<br/>";
}
?>
                </td>
                <td>
                    <a href="<?php 
echo JRoute::_("index.php?option=com_tienda&view=accounts&task=edit");
?>
">
                        <?php 
echo JText::_('COM_TIENDA_EDIT');
?>