4en3rgY Romania
[Tutorial] Instalare thanks for posts 2z8bv910
Welcome To 4EN3RGY Romania
Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, post status updates, manage your profile and so much more. If you already have an account, login here - otherwise create an account for free today!

4en3rgY Romania


Nu sunteti conectat. Conectați-vă sau înregistrați-vă

[Tutorial] Instalare thanks for posts

Vezi subiectul anterior Vezi subiectul urmator In jos  Mesaj [Pagina 1 din 1]

1[Tutorial] Instalare thanks for posts Empty [Tutorial] Instalare thanks for posts Vin 03 Feb 2012, 21:18

KiddOx <3.

KiddOx <3.Membru

Descriere: Ii poti multumi unui user.

Versiune :1.3.1

Timp de instalare : In jur de 15 minute

Autor: Палыч

Download mod: [Trebuie sa fiti inscris si conectat pentru a vedea acest link]

Fisiere de uploadat
  • root/umil/*.*,
  • root/install_thanks_mod.php,
  • root/thankslist.php,
  • root/toplist.php,
  • root/adm/style/acp_thanks.html,
  • root/adm/style/acp_thanks_refresh.html,
  • root/adm/style/acp_thanks_reput.html,
  • root/adm/style/acp_thanks_truncate.html,
  • root/includes/functions_thanks.php,
  • root/includes/functions_thanks_forum.php,
  • root/includes/acp/acp_thanks.php,
  • root/includes/acp/acp_thanks_refresh.php,
  • root/includes/acp/acp_thanks_reput.php,
  • root/includes/acp/acp_thanks_truncate.php,
  • root/includes/acp/info/acp_thanks.php,
  • root/includes/acp/info/acp_thanks_refresh.php,
  • root/includes/acp/info/acp_thanks_reput.php,
  • root/includes/acp/info/acp_thanks_truncate.php,
  • root/language/en/email/user_thanks.txt,
  • root/language/en/mods/thanks_mod.php,
  • root/language/en/mods/info_ucp_thanks.php,
  • root/language/en/mods/info_acp_thanks.php,
  • root/styles/prosilver/imageset/removethanks.gif,
  • root/styles/prosilver/imageset/thankposts.gif,
  • root/styles/prosilver/template/thanks_results.html,
  • root/styles/prosilver/template/thankslist_body.html,
  • root/styles/prosilver/template/toplist_body.html,
  • root/styles/prosilver/theme/images/icon_thanks.gif,
  • root/styles/prosilver/theme/images/icon_thanks_toplist.gif,
  • root/styles/prosilver/theme/images/reput_block_back.gif,
  • root/styles/prosilver/theme/images/reput_block_red.gif,
  • root/styles/prosilver/theme/images/reput_star_back.gif,
  • root/styles/prosilver/theme/images/reput_star_blue.gif,
  • root/styles/prosilver/theme/images/reput_star_gold.gif


Fisiere de modificat
  • memberlist.php,
  • posting.php,
  • viewforum.php,
  • viewtopic.php,
  • includes/constants.php,
  • includes/functions.php,
  • includes/functions_display.php,
  • includes/acp/acp_styles.php,
  • includes/ucp/ucp_prefs.php,
  • [size=150]Prosilver[/size]
  • styles/prosilver/imageset/imageset.cfg,
  • styles/prosilver/template/forumlist_body.html,
  • styles/prosilver/template/memberlist_view.html,
  • styles/prosilver/template/overall_header.html,
  • styles/prosilver/template/ucp_prefs_personal.html,
  • styles/prosilver/template/viewforum_body.html,
  • styles/prosilver/template/viewtopic_body.html,
  • styles/prosilver/theme/buttons.css,
  • styles/prosilver/theme/colours.css
  • [size=150]Subsilver[/size]
  • styles/subsilver2/imageset/imageset.cfg,
  • styles/subsilver2/template/forumlist_body.html,
  • styles/subsilver2/template/memberlist_view.html,
  • styles/subsilver2/template/overall_header.html,
  • styles/subsilver2/template/ucp_prefs_personal.html,
  • styles/subsilver2/template/viewforum_body.html,
  • styles/subsilver2/template/viewtopic_body.html


[size=150]Instalare[/size]

Deschizi memberlist.php
-Cauti
Cod:
// Inactive reason/account?
-Adaugi inainte
Cod:
include($phpbb_root_path . 'includes/functions_thanks.' . $phpEx);   
   $user->add_lang('mods/thanks_mod');   
   output_thanks_memberlist($user_id);
Deschizi posting.php
-Cauta
Cod:
// Start session management
Adaugi inainte
Cod:
include($phpbb_root_path . 'includes/functions_thanks.' . $phpEx);
Cauta
Cod:
$next_post_id = delete_post($forum_id, $topic_id, $post_id, $data);
Adaugi dupa
Cod:
delete_post_thanks($post_id);
Deschizi viewforum.php
Cauta
Cod:
// Okay, lets dump out the page ...
Adaugi inainte
Cod:
if (!function_exists('get_max_topic_thanks'))
{
   include($phpbb_root_path . 'includes/functions_thanks.' . $phpEx);
}
get_max_topic_thanks();
if ($topic_list)
{
   get_thanks_topic_number();
}
Cauta
Cod:
$s_type_switch = ($row['topic_type'] == POST_ANNOUNCE || $row['topic_type'] == POST_GLOBAL) ? 1 : 0;
Adaugi inainte
Cod:
if ($config['thanks_topic_reput_view'])
      {
         get_thanks_topic_reput($topic_id);
      }
Deschizi viewtopic.php

Cauta
Cod:
'PAGE_NUMBER'    => on_page($total_posts, $config['posts_per_page'], $start),
Adaugi dupa
Cod:
   'START'        => $start,
Cauta
Cod:
'allow_pm'      => $row['user_allow_pm'],
Adaugi dupa
Cod:
   'allow_thanks_pm' => $row['user_allow_thanks_pm'],
            'allow_thanks_email' => $row['user_allow_thanks_email'],

Cauta
Cod:
// Output the posts
Adaugi inainte
Cod:
if (!function_exists('array_all_thanks'))
{
   include($phpbb_root_path . 'includes/functions_thanks.' . $phpEx);
}
array_all_thanks($post_list);
if (isset($_REQUEST['thanks']) && !isset($_REQUEST['rthanks']))
{
   insert_thanks(request_var('thanks', 0), $user->data['user_id']);
}
if (isset($_REQUEST['rthanks']) && !isset($_REQUEST['thanks']))
{
   delete_thanks(request_var('rthanks', 0), $user->data['user_id']);
}
Cauta
Cod:
      'L_IGNORE_POST'      => ($row['hide_post']) ? sprintf($user->lang['POST_BY_FOE'], get_username_string('full', $poster_id, $row['username'], $row['user_colour'], $row['post_username']), '<a href="' . $viewtopic_url . "&p={$row['post_id']}&view=show#p{$row['post_id']}" . '">', '</a>') : '',
Adaugi dupa
Cod:
'S_FORUM_THANKS'   => ($auth->acl_get('f_thanks', $forum_id)) ? true : false,
Cauta
Cod:
   if (isset($cp_row['row']) && sizeof($cp_row['row']))
Adaugi inainte
Cod:
output_thanks($row['user_id']);
Deschizi includes/constants.php
Cauta
Cod:
// Additional tables
Adaugi dupa
Cod:
define('THANKS_TABLE', $table_prefix . 'thanks');
Deschizi includes/functions.php

Cauta
Cod:
   $user_lang = $user->lang['USER_LANG'];
Adaugi dupa
Cod:
   $user->add_lang('mods/thanks_mod');
Cauta
Cod:
      'U_MEMBERLIST'         => append_sid("{$phpbb_root_path}memberlist.$phpEx"
Adaugi dupa
Cod:
      'U_THANKSLIST'         => append_sid("{$phpbb_root_path}thankslist.$phpEx"),
      'U_REPUT_TOPLIST'      => append_sid("{$phpbb_root_path}toplist.$phpEx"),
Cauta
Cod:
      'S_DISPLAY_MEMBERLIST'   => (isset($auth)) ? $auth->acl_get('u_viewprofile') : 0,
Adaugi dupa
Cod:
      'S_DISPLAY_THANKSLIST'   => (isset($auth)) ? $auth->acl_get('u_viewthanks') : 0,
      'S_DISPLAY_TOPLIST'      => (isset($auth)) ? $auth->acl_get('u_viewtoplist') : 0,
Deschizi includes/functions_display.php
Cauta
Cod:
   // Used to tell whatever we have to create a dummy category or not.
Adaugi inainte
Cod:
   if (!function_exists('get_max_forum_thanks'))
   {
      include($phpbb_root_path . 'includes/functions_thanks_forum.' . $phpEx);
   }
   get_max_forum_thanks();
   foreach ($forum_rows as $row)
   {
      $forum_thanks_rating[] = $row['forum_id'];
   }
   global $cache;
   $cache->put('_forum_thanks_rating', $forum_thanks_rating);
   get_thanks_forum_number();
   $cache->destroy('_forum_thanks_rating');
Cauta
Cod:
      // Assign subforums loop for style authors
Adaugi inainte
Cod:
      if ($config['thanks_forum_reput_view'])
      {
         get_thanks_forum_reput($row['forum_id']);
      }
Deschizi includes/acp/acp_styles.php
Cauta
Cod:
            'icon_back_top', 'icon_contact_aim', 'icon_contact_email', 'icon_contact_icq', 'icon_contact_jabber', 'icon_contact_msnm', 'icon_contact_pm', 'icon_contact_yahoo', 'icon_contact_www', 'icon_post_delete', 'icon_post_edit', 'icon_post_info', 'icon_post_quote', 'icon_post_report', 'icon_user_online', 'icon_user_offline', 'icon_user_profile', 'icon_user_search', 'icon_user_warn', 'button_pm_forward', 'button_pm_new', 'button_pm_reply', 'button_topic_locked', 'button_topic_new', 'button_topic_reply',
Dupa linia
Cod:
'button_topic_reply',
Adaugi
Cod:
 'thankposts', 'removethanks',
Deschizi includes/ucp/ucp_prefs.php

Cauta
Cod:
'allowpm'      => request_var('allowpm', (bool) $user->data['user_allow_pm']),
Adaugi dupa
Cod:
               'allowthankspm'   => request_var('allowthankspm', (bool) $user->data['user_allow_thanks_pm']),
               'allowthanksemail'   => request_var('allowthanksemail', (bool) $user->data['user_allow_thanks_email']),
Cauta
Cod:
'user_allow_pm'         => $data['allowpm'],
Adaugi dupa
Cod:
'user_allow_thanks_pm'   => $data['allowthankspm'],
                     'user_allow_thanks_email'=> $data['allowthanksemail'],
Cauta
Cod:
'S_ALLOW_PM'      => $data['allowpm'],
Adaugi dupa
Cod:
               'S_ALLOW_THANKS_PM'   => $data['allowthankspm'],
               'S_ALLOW_THANKS_EMAIL'=> $data['allowthanksemail'],
[size=150]Pentru Prosilver[/size]
Deschizi styles/prosilver/imageset/imageset.cfg
Cauti
Cod:
img_icon_user_warn = icon_user_warn.gif*20*20
Adaugi dupa
Cod:
img_thankposts = thankposts.gif*20*20
img_removethanks = removethanks.gif*20*20
Deschizi styles/prosilver/template/forumlist_body.html
Cauti
Cod:
<!-- IF forumrow.MODERATORS -->
Adaugi inainte
Cod:
               <!-- BEGIN reput -->
               <!-- IF forumrow.reput.S_THANKS_FORUM_REPUT_VIEW and forumrow.reput.FORUM_REPUT and not S_IS_BOT -->
               <span style="display: block;">
                  <!-- IF forumrow.reput.S_THANKS_REPUT_GRAPHIC -->
                  <span style="display: block; float: left; width: {forumrow.reput.THANKS_REPUT_GRAPHIC_WIDTH}; height: {forumrow.reput.THANKS_REPUT_HEIGHT}; background: URL({forumrow.reput.THANKS_REPUT_IMAGE_BACK});"><span style="display: block; height: {forumrow.reput.THANKS_REPUT_HEIGHT}; width: {forumrow.reput.FORUM_REPUT}; background: URL({forumrow.reput.THANKS_REPUT_IMAGE});"></span></span> 
                  <!-- ENDIF -->
               {L_REPUT}: {forumrow.reput.FORUM_REPUT}   
               </span>
               <!-- ENDIF -->
               <!-- END reput -->
Deschizi styles/prosilver/template/memberlist_view.html
cauti
Cod:
</form>
Adaugi inainte
Cod:
<script type="text/JavaScript">
function getElement(iElementId)
{
  if (document.all)
  {
      return document.all[iElementId];
  }
  if (document.getElementById)
  {
      return document.getElementById(iElementId);
  }
}

function toggleElement(oElement)
{
  if (oElement.style.display == "none")
  {
      oElement.style.display = "";
  }
  else
  {
      oElement.style.display = "none";
  }
}
</script>

<div class="panel bg1">
   <div class="inner"><span class="corners-top"><span></span></span>
   <h3>{L_GRATITUDES}</h3>
      <dl>
         <dt><strong>{L_GIVEN}:</strong> {POSTER_GIVE_COUNT} {L_THANKS}</dt>
         <dd>
         <!-- IF POSTER_GIVE_COUNT and THANKS_PROFILELIST_VIEW -->
         <a href="javascript: toggleElement( getElement('show_thanks'));">{L_THANKS_LIST}</a>
         <div id="show_thanks" style="display: none;">{THANKS}</div>
         <!-- ENDIF -->
         </dd>
      </dl>      
   <span class="corners-bottom"><span></span></span></div>
</div>
<div class="panel bg2">
   <div class="inner"><span class="corners-top"><span></span></span>
      <dl>
         <dt><strong>{L_RECEIVED}:</strong> {POSTER_RECEIVE_COUNT} {L_THANKS}</dt>
         <dd>
         <!-- IF POSTER_RECEIVE_COUNT and THANKS_PROFILELIST_VIEW -->
         <a href="javascript: toggleElement( getElement('show_thanked'));">{L_THANKS_LIST}</a>
         <div id="show_thanked" style="display: none;">{THANKED}</div>
         <!-- ENDIF -->
         </dd>
      </dl>      
   <span class="corners-bottom"><span></span></span></div>
</div>
Deschizi styles/prosilver/template/overall_header.html
Cauti
Cod:
<!-- IF S_DISPLAY_MEMBERLIST --><li class="icon-members"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
Adaugi dupa
Cod:
               <!-- IF S_DISPLAY_TOPLIST --><li class="icon-thanks_toplist"><a href="{U_REPUT_TOPLIST}" title="{L_REPUT_TOPLIST}">{L_REPUT_TOPLIST}</a></li><!-- ENDIF -->
            <!-- IF S_DISPLAY_THANKSLIST --><li class="icon-thanks"><a href="{U_THANKSLIST}" title="{L_THANKS_USER}">{L_GRATITUDES}</a></li><!-- ENDIF -->
Deschizi styles/prosilver/template/ucp_prefs_personal.html
Cauti
Cod:
         <label for="allowpm0"><input type="radio" name="allowpm" id="allowpm0" value="0"<!-- IF not S_ALLOW_PM --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
      </dd>
   </dl>
Adaugi dupa
Cod:
   <dl>
      <dt><label for="allowthankspm1">{L_ALLOW_THANKS_PM}:</label><br /><span>{L_ALLOW_THANKS_PM_EXPLAIN}</span></dt>
      <dd>
         <label for="allowthankspm1"><input type="radio" name="allowthankspm" id="allowthankspm1" value="1"<!-- IF S_ALLOW_THANKS_PM --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
         <label for="allowthankspm0"><input type="radio" name="allowthankspm" id="allowthankspm0" value="0"<!-- IF not S_ALLOW_THANKS_PM --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
      </dd>
   </dl>
   <dl>
      <dt><label for="allowthanksemail1">{L_ALLOW_THANKS_EMAIL}:</label><br /><span>{L_ALLOW_THANKS_EMAIL_EXPLAIN}</span></dt>
      <dd>
         <label for="allowthanksemail1"><input type="radio" name="allowthanksemail" id="allowthanksemail1" value="1"<!-- IF S_ALLOW_THANKS_EMAIL --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
         <label for="allowthanksemail0"><input type="radio" name="allowthanksemail" id="allowthanksemail0" value="0"<!-- IF not S_ALLOW_THANKS_EMAIL --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
      </dd>
   </dl>
Deschizi styles/prosilver/template/viewforum_body.html
Cauti
Cod:
               <!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} » {topicrow.FIRST_POST_TIME}
Adaugi dupa
Cod:
               <!-- BEGIN reput -->
               <!-- IF topicrow.reput.S_THANKS_TOPIC_REPUT_VIEW and topicrow.reput.TOPIC_REPUT and not S_IS_BOT -->
               <span style="display: block;">
                  <!-- IF topicrow.reput.S_THANKS_REPUT_GRAPHIC -->
                  <span style="display: block; float: left; width: {topicrow.reput.THANKS_REPUT_GRAPHIC_WIDTH}; height: {topicrow.reput.THANKS_REPUT_HEIGHT}; background: URL({topicrow.reput.THANKS_REPUT_IMAGE_BACK});"><span style="display: block; height: {topicrow.reput.THANKS_REPUT_HEIGHT}; width: {topicrow.reput.TOPIC_REPUT}; background: URL({topicrow.reput.THANKS_REPUT_IMAGE});"></span></span> 
                  <!-- ENDIF -->
               {L_REPUT}: {topicrow.reput.TOPIC_REPUT}
               </span>
               <!-- ENDIF -->
               <!-- END reput -->

Deschizi styles/prosilver/template/viewtopic_body.html

Cauti
Cod:
               <!-- IF postrow.U_QUOTE --><li class="quote-icon"><a href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><span>{L_REPLY_WITH_QUOTE}</span></a></li><!-- ENDIF -->
Adaugi dupa
Cod:
               <!-- IF  not postrow.S_FIRST_POST_ONLY or (not START and postrow.S_ROW_COUNT == 0) -->
                  <!-- IF not postrow.S_POST_ANONYMOUS and postrow.S_FORUM_THANKS and S_USER_LOGGED_IN and not postrow.S_IS_OWN_POST and (not postrow.S_ALREADY_THANKED or postrow.S_REMOVE_THANKS) --><li class="{postrow.THANKS_IMG}"><a href="{postrow.THANKS_LINK}" title="{postrow.THANK_ALT}{postrow.POST_AUTHOR}"></a></li><!-- ENDIF -->               
               <!-- ENDIF -->
Cauti
Cod:
         <!-- IF postrow.SIGNATURE --><div id="sig{postrow.POST_ID}" class="signature">{postrow.SIGNATURE}</div><!-- ENDIF -->
      <!-- ENDIF -->
Adaugi dupa
Cod:
      <!-- IF postrow.THANKS and postrow.THANKS_POSTLIST_VIEW -->
         <hr />
         <div class="content">
            <!-- IF not postrow.S_POST_ANONYMOUS and not S_IS_BOT-->
            <dl class="postbody small">
               <dt>{postrow.THANK_TEXT}{postrow.POST_AUTHOR_FULL}{postrow.THANK_TEXT_2}</dt>
               <dd>{postrow.THANKS}</dd>
            </dl>
            <!-- ENDIF -->   
         </div>
      <!-- ENDIF -->
      <!-- IF postrow.S_THANKS_POST_REPUT_VIEW and postrow.POST_REPUT and not postrow.S_POST_ANONYMOUS and not S_IS_BOT -->
         <div class="content">
            <dl class="postbody">
               <dt class="small"><strong>{L_REPUT}:</strong> {postrow.POST_REPUT}</dt>
               <dd>
               <!-- IF postrow.S_THANKS_REPUT_GRAPHIC -->
               <div style="width: {postrow.THANKS_REPUT_GRAPHIC_WIDTH}; height: {postrow.THANKS_REPUT_HEIGHT}; background: URL({postrow.THANKS_REPUT_IMAGE_BACK});"><div style="height: {postrow.THANKS_REPUT_HEIGHT}; width: {postrow.POST_REPUT}; background: URL({postrow.THANKS_REPUT_IMAGE});"></div></div> 
               <!-- ENDIF -->
               </dd>
            </dl>
         </div>
      <!-- ENDIF -->
Cauti
Cod:
      <!-- IF postrow.POSTER_FROM --><dd><strong>{L_LOCATION}:</strong> {postrow.POSTER_FROM}</dd><!-- ENDIF -->
Adaugi dupa
Cod:
      <!-- IF not postrow.S_POST_ANONYMOUS and postrow.THANKS_COUNTERS_VIEW -->
         <dd><strong>{L_GIVEN}:</strong><!-- IF postrow.POSTER_GIVE_COUNT < 1 --> {postrow.POSTER_GIVE_COUNT} {L_THANK}<!-- ELSEIF postrow.POSTER_GIVE_COUNT > 1 --> <a href="{postrow.POSTER_GIVE_COUNT_LINK}">{postrow.POSTER_GIVE_COUNT}</a> {L_THANKS}<!-- ELSE --> <a href="{postrow.POSTER_GIVE_COUNT_LINK}">{postrow.POSTER_GIVE_COUNT}</a> {L_THANK}<!-- ENDIF --></dd>
         <dd><strong>{L_RECEIVED}:</strong><!-- IF postrow.POSTER_RECEIVE_COUNT < 1 --> {postrow.POSTER_RECEIVE_COUNT} {L_THANK}<!-- ELSEIF postrow.POSTER_RECEIVE_COUNT > 1 --> <a href="{postrow.POSTER_RECEIVE_COUNT_LINK}">{postrow.POSTER_RECEIVE_COUNT}</a> {L_THANKS}<!-- ELSE --> <a href="{postrow.POSTER_RECEIVE_COUNT_LINK}">{postrow.POSTER_RECEIVE_COUNT}</a> {L_THANK}<!-- ENDIF --></dd>
      <!-- ENDIF -->
Deschide styles/prosilver/theme/buttons.css
Cauta
Cod:
.sitehome,
Adaugi dupa
Cod:
 .icon-thanks, .icon-thanks_toplist,
Cauta
Cod:
/* Set profile icon dimensions */
Adaugi dupa
Cod:
ul.profile-icons li.thanks-icon   { width: {IMG_THANKPOSTS_WIDTH}px; height: {IMG_THANKPOSTS_HEIGHT}px; }
ul.profile-icons li.removethanks-icon   { width: {IMG_REMOVETHANKS_WIDTH}px; height: {IMG_REMOVETHANKS_HEIGHT}px; }
Deschide styles/prosilver/theme/colours.css
Cauta
Cod:
.icon-search               { background-image: url("{T_THEME_PATH}/images/icon_search.gif"); }
Adauga dupa
Cod:
.icon-thanks               { background-image: url("{T_THEME_PATH}/images/icon_thanks.gif"); }
.icon-thanks_toplist         { background-image: url("{T_THEME_PATH}/images/icon_thanks_toplist.gif"); }
Cauta
Cod:
/* Moderator icons */
Adaugi inainte
Cod:
.thanks-icon, .thanks-icon a      { background-image: url("{IMG_THANKPOSTS_SRC}"); }
.removethanks-icon, .removethanks-icon a   { background-image: url("{IMG_REMOVETHANKS_SRC}"); }
[size=150]Pentru Subsilver[/size]
Deschizi styles/subsilver2/imageset/imageset.cfg
Cauta
Cod:
img_icon_topic_unapproved = icon_topic_unapproved.gif*18*19
Adaugi dupa
Cod:
img_thankposts = thankposts.gif
img_removethanks =  removethanks.gif
Deschizi styles/subsilver2/template/forumlist_body.html
Cauta
Cod:
            <!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS -->
               <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
            <!-- ENDIF -->
Inlocuieste cu
Cod:
               <!-- BEGIN reput -->
               <!-- IF forumrow.reput.S_THANKS_FORUM_REPUT_VIEW and forumrow.reput.FORUM_REPUT and not S_IS_BOT -->
               <span style="display: block;">
                  <!-- IF forumrow.reput.S_THANKS_REPUT_GRAPHIC -->
                  <span style="display: block; float: left; width: {forumrow.reput.THANKS_REPUT_GRAPHIC_WIDTH}; height: {forumrow.reput.THANKS_REPUT_HEIGHT}; background: URL({forumrow.reput.THANKS_REPUT_IMAGE_BACK});"><span style="display: block; height: {forumrow.reput.THANKS_REPUT_HEIGHT}; width: {forumrow.reput.FORUM_REPUT}; background: URL({forumrow.reput.THANKS_REPUT_IMAGE});"></span></span> 
                  <!-- ENDIF -->
               {L_REPUT}:{forumrow.reput.FORUM_REPUT}
               </span>
               <!-- ENDIF -->
               <!-- END reput -->
            <!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS -->
               <p class="forumdesc" style="clear: left"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
            <!-- ENDIF -->
Deschide styles/subsilver2/template/memberlist_view.html

Cauta
Cod:
               <td><!-- IF ACTIVE_TOPIC --><b><a class="gen" href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></b><br /><span class="genmed">[ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>
            </tr>
         <!-- ENDIF -->
Adauga dupa
Cod:
            <tr>
               <td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_GIVEN}: </td>
               <td><span class="gen"><b>{POSTER_GIVE_COUNT}</b> {L_THANKS}</span><br /><!-- IF POSTER_GIVE_COUNT and THANKS_PROFILELIST_VIEW --><a href="javascript: toggleElement( getElement('show_thanks'));">{L_THANKS_LIST}</a>
                  <div id="show_thanks" style="display: none;">
                     {THANKS}
                  </div>
                  <!-- ENDIF -->
               </td>
            </tr>
            <tr>
               <td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_RECEIVED}: </td>
               <td><span class="gen"><b>{POSTER_RECEIVE_COUNT}</b> {L_THANKS}</span><br /><!-- IF POSTER_RECEIVE_COUNT and THANKS_PROFILELIST_VIEW --><a href="javascript: toggleElement( getElement('show_thanked'));">{L_THANKS_LIST}</a>
                  <div id="show_thanked" style="display: none;">
                     {THANKED}
                  </div>
                  <!-- ENDIF -->
               </td>
            </tr>
Deschide styles/subsilver2/template/overall_header.html
Cauta
Cod:
<script type="text/javascript">
Adauga inainte
Cod:
<script type="text/JavaScript">
function getElement(iElementId)
{
  if (document.all)
  {
      return document.all[iElementId];
  }
  if (document.getElementById)
  {
      return document.getElementById(iElementId);
  }
}

function toggleElement(oElement)
{
  if (oElement.style.display == "none")
  {
      oElement.style.display = "";
  }
  else
  {
      oElement.style.display = "none";
  }
}
</script>
Cauta
Cod:
               <!-- IF S_DISPLAY_MEMBERLIST -->   <a href="{U_MEMBERLIST}"><img src="{T_THEME_PATH}/images/icon_mini_members.gif" width="12" height="13" alt="*" /> {L_MEMBERLIST}</a><!-- ENDIF -->
Adaugi dupa
Cod:
               <!-- IF S_DISPLAY_TOPLIST -->   <a href="{U_REPUT_TOPLIST}"><img src="{T_THEME_PATH}/images/icon_mini_toplist.gif" width="15" height="14" alt="*" />{L_REPUT_TOPLIST}</a><!-- ENDIF -->
            <!-- IF S_DISPLAY_THANKSLIST -->   <a href="{U_THANKSLIST}"><img src="{T_THEME_PATH}/images/icon_mini_thanks.gif" width="12" height="13" alt="*" /> {L_GRATITUDES}</a><!-- ENDIF -->
Deschide styles/subsilver2/template/ucp_prefs_personal.html
Cauta
Cod:
<!-- IF S_CAN_HIDE_ONLINE -->
Adauga inainte
Cod:
<tr>
   <td class="row1" width="50%"><b class="genmed">{L_ALLOW_THANKS_PM}:</b><br /><span class="gensmall">{L_ALLOW_THANKS_PM_EXPLAIN}</span></td>
   <td class="row2"><input type="radio" class="radio" name="allowthankspm" id="allowthankspm1" value="1"<!-- IF S_ALLOW_THANKS_PM --> checked="checked"<!-- ENDIF --> /><span class="genmed">{L_YES}</span>  <input type="radio" class="radio" name="allowthankspm" id="allowthankspm0" value="0"<!-- IF not S_ALLOW_THANKS_PM --> checked="checked"<!-- ENDIF --> /><span class="genmed">{L_NO}</span></td>
</tr>
<tr>
   <td class="row1" width="50%"><b class="genmed">{L_ALLOW_THANKS_EMAIL}:</b><br /><span class="gensmall">{L_ALLOW_THANKS_EMAIL_EXPLAIN}</span></td>
   <td class="row2"><input type="radio" class="radio" name="allowthanksemail" id="allowthanksemail1" value="1"<!-- IF S_ALLOW_THANKS_EMAIL --> checked="checked"<!-- ENDIF --> /><span class="genmed">{L_YES}</span>  <input type="radio" class="radio" name="allowthanksemail" id="allowthanksemail0" value="0"<!-- IF not S_ALLOW_THANKS_EMAIL --> checked="checked"<!-- ENDIF --> /><span class="genmed">{L_NO}</span></td>
</tr>
Deschide styles/subsilver2/template/viewforum_body.html
Cauta
Cod:
            <!-- IF topicrow.PAGINATION -->
               <p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
            <!-- ENDIF -->
Inlocuieste cu
Cod:
               <!-- BEGIN reput -->
               <!-- IF topicrow.reput.S_THANKS_TOPIC_REPUT_VIEW and topicrow.reput.TOPIC_REPUT and not S_IS_BOT -->
               <span style="display: block;">
                  <!-- IF topicrow.reput.S_THANKS_REPUT_GRAPHIC -->
                  <span style="float: left; width: {topicrow.reput.THANKS_REPUT_GRAPHIC_WIDTH}; height: {topicrow.reput.THANKS_REPUT_HEIGHT}; background: URL({topicrow.reput.THANKS_REPUT_IMAGE_BACK});"><span style="display: block; height: {topicrow.reput.THANKS_REPUT_HEIGHT}; width: {topicrow.reput.TOPIC_REPUT}; background: URL({topicrow.reput.THANKS_REPUT_IMAGE});"></span></span> 
                  <!-- ENDIF -->
               {L_REPUT}:{topicrow.reput.TOPIC_REPUT}
               </span>
               <!-- ENDIF -->
               <!-- END reput -->
            <!-- IF topicrow.PAGINATION -->
               <p class="gensmall" style="clear:left"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
            <!-- ENDIF -->
Cauta
Cod:
               <!-- IF topicrow.PAGINATION -->
                  <p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
               <!-- ENDIF -->
Inlocuieste cu
Cod:
               <!-- BEGIN reput -->
               <!-- IF topicrow.reput.S_THANKS_TOPIC_REPUT_VIEW and topicrow.reput.TOPIC_REPUT and not S_IS_BOT -->
               <span style="display: block;">
                  <!-- IF topicrow.reput.S_THANKS_REPUT_GRAPHIC -->
                  <span style="display: block; float: left; width: {topicrow.reput.THANKS_REPUT_GRAPHIC_WIDTH}; height: {topicrow.reput.THANKS_REPUT_HEIGHT}; background: URL({topicrow.reput.THANKS_REPUT_IMAGE_BACK});"><span style="display: block;  height: {topicrow.reput.THANKS_REPUT_HEIGHT}; width: {topicrow.reput.TOPIC_REPUT}; background: URL({topicrow.reput.THANKS_REPUT_IMAGE});"></span></span> 
                  <!-- ENDIF -->
               {L_REPUT}:{topicrow.reput.TOPIC_REPUT}
               </span>   
               <!-- ENDIF -->
               <!-- END reput -->
               <!-- IF topicrow.PAGINATION -->
                  <p class="gensmall" style="clear:left"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
               <!-- ENDIF -->
Deschide styles/subsilver2/template/viewtopic_body.html
Cauta
Cod:
               <!-- IF postrow.POSTER_FROM --><br /><b>{L_LOCATION}:</b> {postrow.POSTER_FROM}<!-- ENDIF -->
Adauga dupa
Cod:
               <!-- IF not postrow.S_POST_ANONYMOUS and postrow.THANKS_COUNTERS_VIEW --><br /><b>{L_GIVEN}:</b><!-- IF postrow.POSTER_GIVE_COUNT < 1 --> {postrow.POSTER_GIVE_COUNT} {L_THANK}<!-- ELSEIF postrow.POSTER_GIVE_COUNT > 1 --> <a href="{postrow.POSTER_GIVE_COUNT_LINK}">{postrow.POSTER_GIVE_COUNT}</a> {L_THANKS}<!-- ELSE --> <a href="{postrow.POSTER_GIVE_COUNT_LINK}">{postrow.POSTER_GIVE_COUNT}</a> {L_THANK}<!-- ENDIF --><br /><b>{L_RECEIVED}:</b><!-- IF postrow.POSTER_RECEIVE_COUNT < 1 --> {postrow.POSTER_RECEIVE_COUNT} {L_THANK}<!-- ELSEIF postrow.POSTER_RECEIVE_COUNT > 1 --> <a href="{postrow.POSTER_RECEIVE_COUNT_LINK}">{postrow.POSTER_RECEIVE_COUNT}</a> {L_THANKS}<!-- ELSE --> <a href="{postrow.POSTER_RECEIVE_COUNT_LINK}">{postrow.POSTER_RECEIVE_COUNT}</a> {L_THANK}<!-- ENDIF --><!-- ENDIF -->
Cauta
Cod:
                        <!-- IF postrow.U_DELETE --><a href="{postrow.U_DELETE}">{DELETE_IMG}</a> <!-- ENDIF -->
Adauga dupa
Cod:
                        <!-- IF  not postrow.S_FIRST_POST_ONLY or (not START and postrow.S_ROW_COUNT == 0) -->
                           <!-- IF not postrow.S_POST_ANONYMOUS and postrow.S_FORUM_THANKS and S_USER_LOGGED_IN and not postrow.S_IS_OWN_POST and (not postrow.S_ALREADY_THANKED or postrow.S_REMOVE_THANKS) --><a href="{postrow.THANKS_LINK}" title="{postrow.THANK_ALT}{postrow.POST_AUTHOR}">{postrow.THANK_IMG}</a>   <!-- ENDIF -->
                        <!-- ENDIF -->   
                        <!-- IF postrow.THANKS and postrow.THANKS_POSTLIST_VIEW and not postrow.S_POST_ANONYMOUS -->
                           <table width="100%" cellspacing="0">
                              <tr valign="middle">
                                 <td class="gensmall" align="{S_CONTENT_FLOW_BEGIN}">
                                 <hr />
                                 {postrow.THANK_TEXT}{postrow.POST_AUTHOR_FULL}{postrow.THANK_TEXT_2} {postrow.THANKS}</td>
                              </tr>
                           </table>
                        <!-- ENDIF -->
                        <!-- IF postrow.S_THANKS_POST_REPUT_VIEW and postrow.POST_REPUT and not postrow.S_POST_ANONYMOUS and not S_IS_BOT -->
                           <table class="content" align="left">
                              <tr class="postbody" align="left">
                                 <td>
                                 <!-- IF postrow.S_THANKS_REPUT_GRAPHIC -->
                                 <div style="float: left; width: {postrow.THANKS_REPUT_GRAPHIC_WIDTH}; height: {postrow.THANKS_REPUT_HEIGHT}; background: URL({postrow.THANKS_REPUT_IMAGE_BACK});"><div style="height: {postrow.THANKS_REPUT_HEIGHT}; width: {postrow.POST_REPUT}; background: URL({postrow.THANKS_REPUT_IMAGE});"></div></div> 
                                 <!-- ENDIF -->
                                 <strong>{L_REPUT}:</strong> {postrow.POST_REPUT}
                                 </td>
                              </tr>
                           </table>
                        <!-- ENDIF -->
[*]Dupa ce ati terminat de modificat fisierele ,rulati [Trebuie sa fiti inscris si conectat pentru a vedea acest link]
[*]Nu uitati sa faceti permisiunile din PA>Permisiuni>Permisiuni forum pentru grupuri>Alegeti forumul>Permisiuni avansate>Can thanks for posts>Da
[*]Tutorial creat de PlaY4FuN
[*]Download : [size=150]Click here[/size]

Vezi subiectul anterior Vezi subiectul urmator Sus  Mesaj [Pagina 1 din 1]

Permisiunile acestui forum:
Nu puteti raspunde la subiectele acestui forum

 

Copyright @ 2010-2024 by 4en3rgY ~> All rights reserved.