[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/layouts/vlayout/modules/Rss/ -> RssFeedContents.tpl (source)

   1  {*<!--
   2  /*********************************************************************************

   3  ** The contents of this file are subject to the vtiger CRM Public License Version 1.0

   4   * ("License"); You may not use this file except in compliance with the License

   5   * The Original Code is:  vtiger CRM Open Source

   6   * The Initial Developer of the Original Code is vtiger.

   7   * Portions created by vtiger are Copyright (C) vtiger.

   8   * All Rights Reserved.

   9  *

  10   ********************************************************************************/
  11  -->*}
  12  {strip}
  13  {assign var=WIDTHTYPE value=$CURRENT_USER_MODEL->get('rowheight')}
  14  <table class="table table-bordered listViewEntriesTable">
  15      <thead>
  16          <tr class="listViewHeaders">
  17              {foreach item=LISTVIEW_HEADER from=$LISTVIEW_HEADERS}
  18              <th nowrap {if $LISTVIEW_HEADER@last} colspan="2" {/if} class="{$WIDTHTYPE}">
  19                  {vtranslate($LISTVIEW_HEADER->get('label'), $MODULE)}
  20              </th>
  21              {/foreach}
  22          </tr>
  23      </thead>
  24      {foreach item=LISTVIEW_ENTRY from=$RECORD->getRssObject() name=listview}
  25      <tr class="listViewEntries" data-id='{$RECORD->getId()}'>
  26          {foreach item=LISTVIEW_HEADER from=$LISTVIEW_HEADERS}
  27              {assign var=LISTVIEW_HEADERNAME value=$LISTVIEW_HEADER->get('name')}
  28              <td class="listViewEntryValue {$WIDTHTYPE}" data-field-type="{$LISTVIEW_HEADER->getFieldDataType()}" nowrap>
  29                  <a class='feedLink' href="javascript:;" data-url="{$LISTVIEW_ENTRY['link']}">{$LISTVIEW_ENTRY[$LISTVIEW_HEADERNAME]}</a>
  30              {if $LISTVIEW_HEADER@last}
  31              </td>
  32                  <td nowrap class="{$WIDTHTYPE}">
  33                      <span class="actions">
  34                          <span class="actionImages pull-right">
  35                              <a href="{$LISTVIEW_ENTRY['link']}" target="_BLANK"><i title="{vtranslate('LBL_SHOW_COMPLETE_DETAILS', $MODULE)}" class="icon-th-list alignMiddle"></i></a>&nbsp;
  36                          </span>
  37                      </span>
  38                  </td>
  39              {/if}
  40              </td>
  41          {/foreach}
  42      </tr>
  43      {/foreach}
  44      <tr class="listViewEntrie {$WIDTHTYPE}" nowrap>
  45          <td class="listViewEntryValue">
  46              <a href="{$RECORD->get('url')}" target="_BLANK" name="history_more">{vtranslate('LBL_MORE')}...</a>
  47          </td>
  48          <td nowrap class="{$WIDTHTYPE}">
  49          </td>
  50          <td nowrap class="{$WIDTHTYPE}">
  51          </td>
  52      </tr>
  53  </table>
  54  {/strip}


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1