[ Index ]
 

Code source de e107 0.7.8

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/e107_plugins/list_new/ -> list_template.php (source)

   1  <?php
   2  
   3  if (!defined('e107_INIT')) { exit; }
   4  
   5  global $sc_style, $list_shortcodes;
   6  $sc_style['LIST_DATE']['pre'] = "";
   7  $sc_style['LIST_DATE']['post'] = " ";
   8  
   9  $sc_style['LIST_ICON']['pre'] = "";
  10  $sc_style['LIST_ICON']['post'] = " ";
  11  
  12  $sc_style['LIST_HEADING']['pre'] = "";
  13  $sc_style['LIST_HEADING']['post'] = " ";
  14  
  15  $sc_style['LIST_AUTHOR']['pre'] = LIST_MENU_2.": ";
  16  $sc_style['LIST_AUTHOR']['post'] = " ";
  17  
  18  $sc_style['LIST_CATEGORY']['pre'] = LIST_MENU_4.": ";
  19  $sc_style['LIST_CATEGORY']['post'] = " ";
  20  
  21  $sc_style['LIST_INFO']['pre'] = "";
  22  $sc_style['LIST_INFO']['post'] = " ";
  23  
  24  
  25  //LIST_MENU_NEW TEMPLATE -------------------------------------------------------------------------
  26  $LIST_MENU_NEW_START = "
  27  <div class='fcaption' style='cursor:pointer;' onclick='expandit(this);'>{LIST_CAPTION}</div>
  28  <div class='forumheader' style='margin-bottom:5px; display:{LIST_DISPLAYSTYLE};'>\n";
  29  $LIST_MENU_NEW = "
  30  <div>
  31  {LIST_ICON} {LIST_DATE} {LIST_HEADING} {LIST_AUTHOR} {LIST_CATEGORY}
  32  </div>";
  33  $LIST_MENU_NEW_END = "
  34  </div>\n";
  35  
  36  //LIST_MENU_RECENT TEMPLATE -------------------------------------------------------------------------
  37  $LIST_MENU_RECENT_START = "
  38  <div class='fcaption' style='cursor:pointer;' onclick='expandit(this);'>{LIST_CAPTION}</div>
  39  <div class='forumheader' style='margin-bottom:5px; display:{LIST_DISPLAYSTYLE};'>\n";
  40  $LIST_MENU_RECENT = "
  41  <div>
  42  {LIST_ICON} {LIST_DATE} {LIST_HEADING} {LIST_AUTHOR} {LIST_CATEGORY}
  43  </div>";
  44  $LIST_MENU_RECENT_END = "
  45  </div>\n";
  46  
  47  
  48  //PAGE TEMPLATE -------------------------------------------------------------------------
  49  $LIST_PAGE_RECENT_START = "
  50  <div class='fcaption' style='cursor:pointer;' onclick='expandit(this);'>{LIST_CAPTION}</div>
  51  <div class='forumheader' style='margin-bottom:10px; display:{LIST_DISPLAYSTYLE};'>\n";
  52  $LIST_PAGE_RECENT = "
  53  <div>
  54  {LIST_ICON} {LIST_DATE} {LIST_HEADING} {LIST_AUTHOR} {LIST_CATEGORY} {LIST_INFO}
  55  </div>";
  56  $LIST_PAGE_RECENT_END = "
  57  </div>\n";
  58  
  59  
  60  //NEW TEMPLATE -------------------------------------------------------------------------
  61  $LIST_PAGE_NEW_START = "
  62  <div class='fcaption' style='cursor:pointer;' onclick='expandit(this);'>{LIST_CAPTION}</div>
  63  <div class='forumheader' style='margin-bottom:10px; display:{LIST_DISPLAYSTYLE};'>\n";
  64  $LIST_PAGE_NEW = "
  65  <div>
  66  {LIST_ICON} {LIST_DATE} {LIST_HEADING} {LIST_AUTHOR} {LIST_CATEGORY} {LIST_INFO}
  67  </div>";
  68  $LIST_PAGE_NEW_END = "
  69  </div>\n";
  70  
  71  
  72  //MULTI COLOMNS LAYOUT MASTER -----------------------------------------------------------
  73  $LIST_COL_START = "
  74  <div style='text-align:center;'>
  75  <table class='fborder' style='width:100%;' cellspacing='0' cellpadding='0'>
  76  <tr>";
  77  $LIST_COL_WELCOME = "<td colspan='{LIST_COL_COLS}' class='forumheader'>{LIST_COL_WELCOMETEXT}<br /><br /></td>";
  78  $LIST_COL_ROWSWITCH = "</tr><tr>";
  79  $LIST_COL_CELL_START = "<td style='width:{LIST_COL_CELLWIDTH}%; padding-right:5px; vertical-align:top;'>";
  80  $LIST_COL_CELL_END = "</td>";
  81  $LIST_COL_END = "</tr></table></div>";
  82  
  83  //TIMELAPSE SELECT -----------------------------------------------------------
  84  $LIST_TIMELAPSE_TABLE = "<div class='forumheader3' style='margin-bottom:20px;'>{LIST_TIMELAPSE}</div>";
  85  
  86  ?>


Généré le : Sun Apr 1 01:23:32 2007 par Balluche grâce à PHPXref 0.7