Ir para conteúdo
Fórum Script Brasil

JimiC

Membros
  • Total de itens

    5
  • Registro em

  • Última visita

Posts postados por JimiC

  1. Não deu certo.

    Vou trabalhar só com esse código aqui, limpei um pouco as informações para facilitar. Até agora consegui com esse código que as figuras saiam em 10 colunas, mas em uma só linha:

    ** No código que você incorporou ao meu não tem o while, como o loop iria voltar? Falei besteira?

    <table border="0" cellpadding="0" style="border-collapse: collapse" align="center">   
      <?php foreach( $this->users as $user ): ?>
    
     <td width="140" height="150" align="center" valign="top">
          <?php echo $this->htmlLink($user->getHref(), $this->itemPhoto($user, 'thumb.icon')) ?>
          <?php echo $this->htmlLink($user->getHref(), $user->getTitle()) ?>
          <?php if( $this->viewer()->getIdentity() ): ?>
            
              <?php echo $this->userFriendship($user) ?>
           
          <?php endif; ?>
     </td>      
    
      <?php endforeach; ?>
    </table>

    Até agora está assim:

    browse%202.jpg

  2. Parisi, estou fazendo uns testes aos poucos, consegui concentrar a informação dos usuários, mas estão aparecendo um em cada linha, não sei como implementar as colunas. Olha o código que tenho até agora:

    <?php foreach( $this->users as $user ): ?>
     <table border="0" cellpadding="0" style="border-collapse: collapse" align="center">   
     <td width="140" height="150" align="center" valign="top">
          <?php echo $this->htmlLink($user->getHref(), $this->itemPhoto($user, 'thumb.icon')) ?>
          <?php if( $this->viewer()->getIdentity() ): ?>
            
              <?php echo $this->userFriendship($user) ?>
           
          <?php endif; ?>
    
            
              <?php echo $this->htmlLink($user->getHref(), $user->getTitle()) ?>
              <?php echo $user->status; ?>
              <?php if( $user->status != "" ): ?>
                
                  <?php echo $this->timestamp($user->status_date) ?>
                
              <?php endif; ?>
     </td>      
     </table>
      <?php endforeach; ?>
    Valeu pela ajuda! Cara, mudando o <table> pra cima fica um ao lado do outro, quase! mas 10 em só uma linha.
    <table border="0" cellpadding="0" style="border-collapse: collapse" align="center">   
      <?php foreach( $this->users as $user ): ?>
    
     <td width="140" height="150" align="center" valign="top">
          <?php echo $this->htmlLink($user->getHref(), $this->itemPhoto($user, 'thumb.icon')) ?>
          <?php if( $this->viewer()->getIdentity() ): ?>
            
              <?php echo $this->userFriendship($user) ?>
           
          <?php endif; ?>
    
            
              <?php echo $this->htmlLink($user->getHref(), $user->getTitle()) ?>
              <?php echo $user->status; ?>
              <?php if( $user->status != "" ): ?>
                
                  <?php echo $this->timestamp($user->status_date) ?>
                
              <?php endif; ?>
     </td>      
    
      <?php endforeach; ?>
    </table>

  3. Bom dia a todos. Estou tentando customizar um layout de um site, é uma comunidade.

    Vou colocar as imagens do que estou querendo para ajudar.

    Página de busca de usuários:

    browseoriginal.jpg

    Estou querendo que os usuários sejam mostrados em linhas e colunas, assim:

    browse.jpg

    Esse é o código do arquivo *.tpl que controla a página:

    <?php
    ?>
    <h3>
      <?php echo $this->translate(array('%s member found.', '%s members found.', $this->totalUsers),$this->locale()->toNumber($this->totalUsers)) ?>
    </h3>
    
    <ul id="browsemembers_ul">
      <?php foreach( $this->users as $user ): ?>
        <li>
          <?php echo $this->htmlLink($user->getHref(), $this->itemPhoto($user, 'thumb.icon')) ?>
          <?php if( $this->viewer()->getIdentity() ): ?>
            <div class='browsemembers_results_links'>
              <?php echo $this->userFriendship($user) ?>
            </div>
          <?php endif; ?>
    
            <div class='browsemembers_results_info'>
              <?php echo $this->htmlLink($user->getHref(), $user->getTitle()) ?>
              <?php echo $user->status; ?>
              <?php if( $user->status != "" ): ?>
                <div>
                  <?php echo $this->timestamp($user->status_date) ?>
                </div>
              <?php endif; ?>
            </div>
        </li>
      <?php endforeach; ?>
    </ul>
    
    <?php if( $this->users ): ?>
      <div class='browsemembers_viewmore' id="browsemembers_viewmore">
        <?php echo $this->paginationControl($this->users, null, null, array(
          'pageAsQuery' => true,
          'query' => $this->formValues,
          //'params' => $this->formValues,
        )); ?>
      </div>
    <?php endif; ?>
    
    <script type="text/javascript">
      page = '<?php echo sprintf('%d', $this->page) ?>';
      totalUsers = '<?php echo sprintf('%d', $this->totalUsers) ?>';
      userCount = '<?php echo sprintf('%d', $this->userCount) ?>';
    </script>

    Qualquer ajuda será bem-vinda.

×
×
  • Criar Novo...