1. Мы продолжаем публиковать интересные статьи на тему SocialEngine 4. Одна из статей посвящена правильному выбору сервера для вашей социальной сети, а другая содержит советы по увеличению производительности платформы. Также мы добавили большую статью о пользовательских уровнях. Ознакомиться со статьями вы можете в разделе Вопросы и Ответы SocialEngine 4.
  2. Вам кажется, что ваша версия SocialEngine 4, работает медленно?

    Голосуйте. Пишите свою версию системы, железо на чем работает и количество пользователей. Будем увеличивать производительность :-) Подробнее

  3. В связи с участившимися случаями попыток продажи пользователями форума различных "сборок" коммерческих социальных платформ, обычно основанных на SocialEngine 3, вводится новое правило для форума. Запрещается создание тем или размещение в уже созданных предложений о продаже или размещение ссылок на сайты, где происходит продажа "сборок". Пользователи, которые продолжат свою коммерческую деятельность в данном направлении, будут заблокированы. Подробнее.

Question Порядок сообщений

Discussion in 'Прочая Поддержка - Help Requests' started by leonid_bt, Mar 27, 2011.

  1. leonid_bt Thread starter User


    Offline
    Message Count:
    94
    Likes Received:
    0
    Как сделать,чтобы сообщения в переписке отображались не сверху вниз по дате,а новые сообщения отображались вверху,ну как вконтакте фактически.
    Как понимаю это вот тут делается:
    PHP:
    <?php
    /**
     * SocialEngine
     *
     * @category   Application_Core
     * @package    Messages
     * @copyright  Copyright 2006-2010 Webligo Developments
     * @license    http://www.socialengine.net/license/
     * @version    $Id: view.tpl 7904 2010-12-03 03:36:14Z john $
     * @author     John
     */
    ?>

    <div class="headline">
      <h2>
        <?php echo $this->translate('My Messages');?>
      </h2>
      <div class="tabs">
        <?php
          
    // Render the menu
          
    echo $this->navigation()
            ->
    menu()
            ->
    setContainer($this->navigation)
            ->
    render();
        
    ?>
      </div>
    </div>

    <h3>
      <?php if( '' != ($title trim($this->conversation->getTitle())) ): ?>
        <?php echo $title ?>
      <?php else: ?>
        <em>
          <?php echo $this->translate('(No Subject)'?>
        </em>
      <?php endif; ?>
    </h3>

    <div class="message_view_between">
      <?php
      $you  
    array_shift($this->recipients);
      
    $you  $this->htmlLink($you->getHref(), ($you==$this->viewer()?$this->translate('You'):$you->getTitle()));
      
    $them = array();
      foreach (
    $this->recipients as $r) {
        if (
    $r != $this->viewer()) {
            
    $them[] = ($r==$this->blocker?"<s>":"").$this->htmlLink($r->getHref(), $r->getTitle()).($r==$this->blocker?"</s>":"");
        } else {
            
    $them[] = $this->htmlLink($r->getHref(), $this->translate('You'));
        }
      }
      
      if (
    count($them)) echo $this->translate('Between %1$s and %2$s'$you$this->fluentList($them));
      else echo 
    'Conversation with a deleted member.';
      
    ?>
    </div>

    <ul class="message_view">
      <?php foreach( $this->messages as $message ):
        
    $user $this->user($message->user_id); ?>
        <li>
          <div class='message_view_leftwrapper'>
            <div class='message_view_photo'>
              <?php echo $this->htmlLink($user->getHref(), $this->itemPhoto($user'thumb.icon')) ?>
            </div>
            <div class='message_view_from'>
              <p>
                <?php echo $this->htmlLink($user->getHref(), $user->getTitle()) ?>
              </p>
              <p class="message_view_date">
                <?php echo $this->timestamp($message->date?>
              </p>
            </div>
          </div>
          <div class='message_view_info'>
            <?php echo nl2br(html_entity_decode($message->body)) ?>
            <?php if( !empty($message->attachment_type) && null !== ($attachment $this->item($message->attachment_type$message->attachment_id))): ?>
              <div class="message_attachment">
                <?php if(null != ( $richContent $attachment->getRichContent(false, array('message'=>$message->conversation_id)))): ?>
                  <?php echo $richContent?>
                <?php else: ?>
                  <div class="message_attachment_photo">
                    <?php if( null !== $attachment->getPhotoUrl() ): ?>
                      <?php echo $this->itemPhoto($attachment'thumb.normal'?>
                    <?php endif; ?>
                  </div>
                  <div class="message_attachment_info">
                    <div class="message_attachment_title">
                      <?php echo $this->htmlLink($attachment->getHref(array('message'<=$message->conversation_id)), $attachment->getTitle()) ?>
                    </div>
                    <div class="message_attachment_desc">
                      <?php echo $attachment->getDescription() ?>
                    </div>
                  </div>
               <?php endif; ?>
              </div>
            <?php endif; ?>
          </div>
        </li>
      <?php endforeach; ?>

      <li class='message_quick_entry'>
        <div class='message_view_leftwrapper'>
          <div class='message_view_photo'>
            &nbsp;
          </div>
          <div class='message_view_from'>
            <p>
              &nbsp;
            </p>
            <p class="message_view_date">
              &nbsp;
            </p>
          </div>
        </div>

        <div class='message_view_info'>
        <?php if( !$this->blocked || (count($this->recipients)>1)): ?>
          <?php echo $this->form->setAttrib('id''messages_form_reply')->render($this?>
        <?php else:?>
          <?php echo $this->translate('You can no longer respond to this message because %1$s has blocked you.'$this->blocker->getTitle())?>
        <?php endif; ?>
        </div>

      </li>
    </ul>



    <?php
        $this
    ->headScript()
          ->
    appendFile($this->baseUrl() . '/externals/mdetect/mdetect' . ( APPLICATION_ENV != 'development' '.min' '' ) . '.js')
          ->
    appendFile($this->baseUrl().'/application/modules/Core/externals/scripts/composer.js');
    ?>

    <script type="text/javascript">
    //<![CDATA[
      var composeInstance;
      en4.core.runonce.add(function() {
        var tel = new Element('div', {
          'id' : 'compose-tray',
          'styles' : {
            'display' : 'none'
          }
        }).inject($('submit'), 'before');

        var mel = new Element('div', {
          'id' : 'compose-menu'
        }).inject($('submit'), 'after');

        // @todo integrate this into the composer
        if( !Browser.Engine.trident && !DetectMobileQuick() && !DetectIpad() ) {
          composeInstance = new Composer('body', {
            overText : false,
            menuElement : mel,
            trayElement: tel,
            baseHref : '<?php echo $this->baseUrl() ?>',
            hideSubmitOnBlur : false,
            allowEmptyWithAttachment : false,
            submitElement: 'submit',
            type: 'message'
          });
        }
      });
    //]]>>
    </script>
    <?php foreach( $this->composePartials as $partial ): ?>
      <?php echo $this->partial($partial[0], $partial[1]) ?>
    <?php 
    endforeach; ?>
    А именно в этом фрагменте:
    PHP:
      <?php foreach( $this->messages as $message ):
        
    $user $this->user($message->user_id); ?>
        <li>
          <div class='message_view_leftwrapper'>
            <div class='message_view_photo'>
              <?php echo $this->htmlLink($user->getHref(), $this->itemPhoto($user'thumb.icon')) ?>
            </div>
            <div class='message_view_from'>
              <p>
                <?php echo $this->htmlLink($user->getHref(), $user->getTitle()) ?>
              </p>
              <p class="message_view_date">
                <?php echo $this->timestamp($message->date?>
              </p>
            </div>
          </div>
          <div class='message_view_info'>
            <?php echo nl2br(html_entity_decode($message->body)) ?>
            <?php if( !empty($message->attachment_type) && null !== ($attachment $this->item($message->attachment_type$message->attachment_id))): ?>
              <div class="message_attachment">
                <?php if(null != ( $richContent $attachment->getRichContent(false, array('message'=>$message->conversation_id)))): ?>
                  <?php echo $richContent?>
                <?php else: ?>
                  <div class="message_attachment_photo">
                    <?php if( null !== $attachment->getPhotoUrl() ): ?>
                      <?php echo $this->itemPhoto($attachment'thumb.normal'?>
                    <?php endif; ?>
                  </div>
                  <div class="message_attachment_info">
                    <div class="message_attachment_title">
                      <?php echo $this->htmlLink($attachment->getHref(array('message'<=$message->conversation_id)), $attachment->getTitle()) ?>
                    </div>
                    <div class="message_attachment_desc">
                      <?php echo $attachment->getDescription() ?>
                    </div>
                  </div>
               <?php endif; ?>
              </div>
            <?php endif; ?>
          </div>
        </li>
      <?php endforeach; ?>
  2. Vanqa Banned


    Offline
    • Banned
    Message Count:
    337
    Likes Received:
    41
    My version of phpFox:
    3.0.0
    Решение есть?

Share This Page

All rights reserved SocEngine.ru ©