|
|
phpBB2 by Przemo
Support forów phpBB2 modified by Przemo
|
|
Przesunięty przez: Boltex 13-11-2013, 21:10 |
jak zrobić portfel na forum |
Autor |
Wiadomość |
pietruszka4444
Posty: 47
|
Wysłany: 13-11-2013, 19:38 jak zrobić portfel na forum
|
|
|
siema
Wiecie może jak zrobić portfel na forum . Dam plusa |
|
|
|
|
Gadatliwa Kasia
|
|
|
|
Lisu15
Pomógł: 204 razy Posty: 1546
|
|
|
|
|
Tommekk80
Pomógł: 1411 razy Posty: 4780
|
Wysłany: 14-11-2013, 17:51
|
|
|
A dokładnie? Userzy mają mieć pieniądze czy zrzuta na coś ma być? |
|
|
|
|
pietruszka4444
Posty: 47
|
Wysłany: 14-11-2013, 20:06 ;p
|
|
|
tak żeby Userzy mieli pieniądze żeby sms wysłali ja tylko potwierdzę na email i oni wtedy żeby mieli pieniądze na forum. |
Ostatnio zmieniony przez Woytec 18-12-2013, 22:33, w całości zmieniany 1 raz |
|
|
|
|
@d!r3k
Pomógł: 851 razy Posty: 1685
|
Wysłany: 19-12-2013, 23:33
|
|
|
pietruszka4444, a potem za te pieniądze mają mieć możliwość zakupu czegoś na forum? Czy tylko tak jak by "stan portfela" ? |
_________________ Odpłatnie wykonam:
- Instalację forum / Instalację modyfikacji,
- Wykonanie uniwersalnego szablonu / Kodowanie szablonów,
- Pisanie drobnych modyfikacji. |
|
|
|
|
pietruszka4444
Posty: 47
|
Wysłany: 20-12-2013, 15:47 p
|
|
|
[ Dodano: 20-12-2013, 15:53 ]
bardziej to stan portfela przy panelu użytkownika bym chciał , aa i jak będę mógł dać temu użytkownikowi te pieniądze ?? |
|
|
|
|
Woytec
Pomógł: 2596 razy Posty: 7676
|
Wysłany: 20-12-2013, 21:29
|
|
|
Jeszcze "Points system" |
|
|
|
|
pietruszka4444
Posty: 47
|
Wysłany: 21-12-2013, 11:47 ??
|
|
|
a po co ten Points system ?? |
|
|
|
|
@d!r3k
Pomógł: 851 razy Posty: 1685
|
Wysłany: 21-12-2013, 11:52
|
|
|
pietruszka4444
-> http://www.przemo.org/php...pic.php?t=28361 |
_________________ Odpłatnie wykonam:
- Instalację forum / Instalację modyfikacji,
- Wykonanie uniwersalnego szablonu / Kodowanie szablonów,
- Pisanie drobnych modyfikacji. |
|
|
|
|
pietruszka4444
Posty: 47
|
Wysłany: 21-12-2013, 16:18 ??
|
|
|
po wgrywałem te pliki , a to też mam zrobić ??
Kod: | #
#-----[ Uruchom plik w zależności ]-------------------------------------------
#
mod_install.php
mod_uninstall.php
mod_upgrade.php
#
#-----[ Usuń pliki ]-------------------------------------------
#
mod_install.php
mod_uninstall.php
mod_upgrade.php
#
#-----[ Otwórz ]------------------------------------------
#
admin/admin_forums.php
#
#-----[ Znajdz ]------------------------------------------
#
$statuslist .= "<option value=\"" . FORUM_LOCKED . "\" $forumlocked>" . $lang['Status_locked'] . "</option>\n";
#
#-----[ Po tym dodaj ]------------------------------------------
#
if ($row['points_disabled'])
{
$yes = 'selected="selected"';
}
else
{
$no = 'selected="selected"';
}
$pointslist = '<option value="' . TRUE . '" ' . $yes . '>' . $lang['Yes'] . '</option>';
$pointslist .= '<option value="' . FALSE . '" ' . $no . '>' . $lang['No'] . '</option>';
#
#-----[ Znajdz ]------------------------------------------
#
'S_PRUNE_ENABLED' => $prune_enabled,
#
#-----[ Po tym dodaj ]------------------------------------------
#
'S_POINTS_LIST' => $pointslist,
#
#-----[ Znajdz ]------------------------------------------
#
'L_DAYS' => $lang['Days'],
#
#-----[ Po tym dodaj ]------------------------------------------
#
'L_POINTS_DISABLED' => sprintf($lang['Points_disabled'], $board_config['points_name']),
#
#-----[ Znajdz ]------------------------------------------
#
" . $field_sql . ")
#
#-----[ Zamień ]------------------------------------------
#
, points_disabled" . $field_sql . ")
#
#-----[ Znajdz ]------------------------------------------
#
" . intval($HTTP_POST_VARS['prune_enable']) . ", '$forum_link',
#
#-----[ Zamień ]------------------------------------------
#
" . intval($HTTP_POST_VARS['prune_enable']) . ", " . intval($HTTP_POST_VARS['points_disabled']) . ", '$forum_link',
#
#-----[ Znajdz ]------------------------------------------
#
" . intval($HTTP_POST_VARS['prune_enable']) . $field_value_sql . "
#
#-----[ Zamień ]------------------------------------------
#
" . intval($HTTP_POST_VARS['prune_enable']) . ", points_disabled = " . intval($HTTP_POST_VARS['points_disabled']) . $field_value_sql . "
#
#-----[ Otwórz ]------------------------------------------
#
admin/admin_users.php
#
#-----[ Znajdz ]------------------------------------------
#
$password_confirm = ( !empty($HTTP_POST_VARS['password_confirm']) ) ? trim(strip_tags(htmlspecialchars( $HTTP_POST_VARS['password_confirm'] ) )) : '';
#
#-----[ Po tym dodaj ]------------------------------------------
#
$points = intval($HTTP_POST_VARS['points']);
#
#-----[ Znajdz pierwsze ]------------------------------------------
#
$password = '';
$password_confirm = '';
#
#-----[ Po tym dodaj ]------------------------------------------
#
$points = intval($points);
#
#-----[ Znajdz ]------------------------------------------
#
user_allow_helped = $user_allow_helped
#
#-----[ W lini po tym dodaj ]------------------------------------------
#
, user_points = $points
#
#-----[ Znajdz drugie ]------------------------------------------
#
$password = '';
$password_confirm = '';
#
#-----[ Po tym dodaj ]------------------------------------------
#
$points = $this_userdata['user_points'];
#
#-----[ Znajdz trzecie ]------------------------------------------
#
$password = '';
$password_confirm = '';
#
#-----[ Po tym dodaj ]------------------------------------------
#
$points = $this_userdata['user_points'];
#
#-----[ Znajdz ]------------------------------------------
#
$s_hidden_fields .= '<input type="hidden" name="user_rank" value="' . $user_rank . '" />';
#
#-----[ Po tym dodaj ]------------------------------------------
#
$s_hidden_fields .= '<input type="hidden" name="points" value="' . $points . '" />';
#
#-----[ Znajdz ]------------------------------------------
#
'RANK_SELECT_BOX' => $rank_select_box,
#
#-----[ Po tym dodaj ]------------------------------------------
#
'POINTS' => $points,
#
#-----[ Znajdz ]------------------------------------------
#
'L_ALWAYS_ADD_SIGNATURE' => $lang['Always_add_sig'],
#
#-----[ Po tym dodaj ]------------------------------------------
#
'L_POINTS' => $board_config['points_name'],
#
#-----[ Otwórz ]------------------------------------------
#
includes/functions_post.php
#
#-----[ Znajdz ]------------------------------------------
#
global $userdata, $user_ip;
#
#-----[ Zamień ]------------------------------------------
#
global $userdata, $user_ip, $post_info;
#
#-----[ Znajdz ]------------------------------------------
#
}
}
}
}
}
#
#-----[ Po tym dodaj ]------------------------------------------
#
if ($board_config['points_post'] && !$post_info['points_disabled'])
{
$points = abs(($mode == 'newtopic') ? $board_config['points_topic'] : $board_config['points_reply']);
if ($userdata['user_id'] != ANONYMOUS && $mode != 'editpost')
{
add_points($userdata['user_id'], $points);
}
}
#
#-----[ Otwórz ]------------------------------------------
#
includes/usercp_register.php
#
#-----[ Znajdz ]------------------------------------------
#
$notifyreply = $userdata['user_notify'];
#
#-----[ Po tym dodaj ]------------------------------------------
#
$notifydonation = $userdata['user_notify_donation'];
#
#-----[ Znajdz ]------------------------------------------
#
'NOTIFY_REPLY_NO' => (!$notifyreply) ? 'checked="checked"' : '',
#
#-----[ Po tym dodaj ]------------------------------------------
#
'NOTIFY_DONATION_YES' => ( $notifydonation ) ? 'checked="checked"' : '',
'NOTIFY_DONATION_NO' => ( !$notifydonation ) ? 'checked="checked"' : '',
#
#-----[ Znajdz ]------------------------------------------
#
'L_EMAIL_ADDRESS' => $lang['Email_address'],
#
#-----[ Po tym dodaj ]------------------------------------------
#
'L_NOTIFY_DONATION' => sprintf($lang['Points_notify'], $board_config['points_name']),
'L_NOTIFY_DONATION_EXPLAIN' => sprintf($lang['Points_notify_explain'], $board_config['points_name']),
#
#-----[ Otwórz ]------------------------------------------
#
includes/usercp_viewprofile.php
#
#-----[ Znajdz ]------------------------------------------
#
$search = '<a href="' . $temp_url . '">' . sprintf($lang['Search_user_posts'], $profiledata['username']) . '</a>';
#
#-----[ Po tym dodaj ]------------------------------------------
#
$user_points = ($userdata['user_level'] == ADMIN || user_is_authed($userdata['user_id'])) ? '<a href="' . append_sid("pointscp.$phpEx?" . POST_USERS_URL . "=" . $profiledata['user_id']) . '" class="gen" title="' . sprintf($lang['Points_link_title'], $board_config['points_name']) . '">' . $profiledata['user_points'] . '</a>' : $profiledata['user_points'];
if ($board_config['points_donate'] && $userdata['user_id'] != ANONYMOUS && $userdata['user_id'] != $profiledata['user_id'])
{
$donate_points = '<br />' . sprintf($lang['Points_donate'], '<a href="' . append_sid("pointscp.$phpEx?mode=donate&" . POST_USERS_URL . "=" . $profiledata['user_id']) . '" class="genmed" title="' . sprintf($lang['Points_link_title_2'], $board_config['points_name']) . '">', '</a>');
}
else
{
$donate_points = '';
}
#
#-----[ Znajdz ]------------------------------------------
#
'MSN' => ($board_config['cmsn']) ? $msn : '',
'YIM_IMG' => ($board_config['cyahoo']) ? $yim_img : '',
'YIM' => $yim,
#
#-----[ Po tym dodaj ]------------------------------------------
#
'POINTS' => $user_points,
'DONATE_POINTS' => $donate_points,
#
#-----[ Znajdz ]------------------------------------------
#
'L_LOCATION' => $lang['Location'],
'L_OCCUPATION' => $lang['Occupation'],
'L_INTERESTS' => $lang['Interests'],
#
#-----[ Po tym dodaj ]------------------------------------------
#
'L_POINTS' => $board_config['points_name'],
#
#-----[ Otwórz ]------------------------------------------
#
language/lang_english/lang_admin.php
#
#-----[ Znajdz ]------------------------------------------
#
$lang['Saved_config'] = 'Set configuration saved: %s';
#
#-----[ Po tym dodaj ]------------------------------------------
#
// Points System MOD - Admin
$lang['Points_updated'] = 'Points Configuration Updated Successfully';
$lang['Click_return_points'] = 'Click %sHere%s to return to Points Configuration';
$lang['Points_config_explian'] = 'The form below will allow you to edit your point system configuration.';
$lang['Points_sys_settings'] = 'Points System Settings';
$lang['Points_disabled'] = 'Disable %s';
$lang['Points_enable_post'] = 'Earn %s by posting';
$lang['Points_enable_donation'] = 'Enable Donation';
$lang['Points_name'] = 'Points Name';
$lang['Points_per_reply'] = 'Points Per Reply';
$lang['Points_per_topic'] = 'Points Per New Topic';
$lang['Points_user_group_auth'] = 'Authorized Groups';
$lang['Points_enable_post_explain'] = 'Let users earn %s by posting new topics and replies';
$lang['Points_enable_donation_explain'] = 'Let users donate %s to their friends';
$lang['Points_name_explain'] = 'Whatever you call your points on your board e.g. (money, gil, gold)';
$lang['Points_per_reply_explain'] = 'The amount of %s they earn per reply';
$lang['Points_per_topic_explain'] = 'The amount of %s they earn per new topic';
$lang['Points_user_group_auth_explain'] = 'Enter ids of groups who are authorized to access the points control panel, one id per line.';
// End Points System MOD - Admin
#
#-----[ Otwórz ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ Znajdz ]------------------------------------------
#
$lang['An_error_occured'] = 'An Error Occurred';
$lang['A_critical_error'] = 'A Critical Error Occurred';
#
#-----[ Po tym dodaj ]------------------------------------------
#
// Points System MOD
$lang['Points_cp'] = 'Points Control Panel';
$lang['Points_sys'] = 'Points System';
$lang['Points_donation'] = 'Points Donation';
$lang['Points_method'] = 'Method';
$lang['Points_donate'] = '%sDonate%s';
$lang['Points_add_subtract'] = 'Add or subtract %s';
$lang['Points_amount'] = 'Amount';
$lang['Points_give_take'] = 'Amount of %s to give or take';
$lang['Points_give'] = 'Amount of %s to give';
$lang['Add'] = 'Add';
$lang['Subtract'] = 'Subtract';
$lang['Points_donate_to'] = 'The person you want to donate %s to';
$lang['Points_no_username'] = 'No username entered.';
$lang['Points_not_admin'] = 'You are not allowed to admin the points system.';
$lang['Points_cant_take'] = 'You can\'t take away that amount of %s from this user.'; //*
$lang['Points_thanks_donation'] = 'Thanks for your donation.';
$lang['Click_return_points_donate'] = 'Click %sHere%s to return to Points Donation';
$lang['Points_cant_donate'] = 'You can\'t donate that amount of %s to this user.';
$lang['Points_cant_donate_self'] = 'You can\'t donate %s to yourself.';
$lang['Points_user_donation_off'] = 'User donation is not enabled.';
$lang['Click_return_pointscp'] = 'Click %sHere%s to return to the Points Control Panel';
$lang['Points_user_updated'] = 'The user\'s %s has been updated successfully.';
$lang['Points_mass_edit'] = 'Mass Edit Usernames';
$lang['Points_mass_edit_explain'] = 'Enter one username per line.';
$lang['Points_notify'] = 'Always notify me of %s donations';
$lang['Points_notify_explain'] = 'Sends an e-mail when someone donates %s to you';
$lang['Points_enter_some_donate'] = 'Enter some %s to donate.';
// End Points System MOD
#
#-----[ Otwórz ]------------------------------------------
#
language/lang_polish/lang_admin.php
#
#-----[ Znajdz ]------------------------------------------
#
$lang['Saved_config'] = 'Ustaw konfigurację zapisan±: %s';
#
#-----[ Po tym dodaj ]------------------------------------------
#
// Points System MOD - Admin
$lang['Points_updated'] = 'Konfiguracja punktów została zmieniony pomylnie';
$lang['Click_return_points'] = 'Kliknij %sTutaj%s aby powrócić do Konfiguracji Punktów';
$lang['Points_config_explian'] = 'Poniższy formularz pozwala tobie na zmienianie konfiguracji twojego systemu punktów.';
$lang['Points_sys_settings'] = 'Ustawienia Systemu Punktów';
$lang['Points_disabled'] = 'Wył±cz %s';
$lang['Points_enable_post'] = 'Dodawaj %s po napisaniu postów';
$lang['Points_enable_donation'] = 'Wł±cz Dotację';
$lang['Points_name'] = 'Nazwa dla punktów';
$lang['Points_per_reply'] = 'Punkty za Odpowiedź';
$lang['Points_per_topic'] = 'Punkty za Nowy Temat';
$lang['Points_user_group_auth'] = 'Gry Autoryzowane';
$lang['Points_enable_post_explain'] = 'Pozwól użytkownikom zdobywać %s za pisanie nowych tematów oraz odpowiedzi';
$lang['Points_enable_donation_explain'] = 'Pozwól użytkowniom dotować %s ich przyjaciołom';
$lang['Points_name_explain'] = 'Wpisz nazwę dla punktów która będzie używana na forum np. (pieni±dze, złoto)';
$lang['Points_per_reply_explain'] = 'Liczba %s które zostan± dodane za napisanie odpowiedzi do tematu';
$lang['Points_per_topic_explain'] = 'Liczba %s które zostan± dodane za napisanie nowego tematu';
$lang['Points_user_group_auth_explain'] = 'Wpisz ID grup, które będ± miały dostęp do Panelu Kontrolnego Grup. Wpisz jeden ID w jednej linii';
// End Points System MOD - Admin
#
#-----[ Otwórz ]------------------------------------------
#
language/lang_polish/lang_main.php
#
#-----[ Znajdz ]------------------------------------------
#
$lang['An_error_occured'] = 'Wyst±pił Bł±d';
$lang['A_critical_error'] = 'Wyst±pił Krytyczny Bł±d';
#
#-----[ Po tym dodaj ]------------------------------------------
#
// Points System MOD
$lang['Points_cp'] = 'Panel Kontrolny Punktów';
$lang['Points_sys'] = 'System Punktów';
$lang['Points_donation'] = 'Dotacja Punktów';
$lang['Points_method'] = 'Metoda';
$lang['Points_donate'] = '%sDotacja%s';
$lang['Points_add_subtract'] = 'Dodaj lub odbierz %s';
$lang['Points_amount'] = 'Iloć';
$lang['Points_give_take'] = 'Iloć punktów do dodania lub odebrania';
$lang['Points_give'] = 'Iloć punktów do dodania';
$lang['Add'] = 'Dodaj';
$lang['Subtract'] = 'Odbierz';
$lang['Points_donate_to'] = 'Osoba której chcesz podarować %s';
$lang['Points_no_username'] = 'Nie wpisałe nazwy użytkownika.';
$lang['Points_not_admin'] = 'Nie masz zezwolenia na administrowanie systemem punktów.';
$lang['Points_cant_take'] = 'Nie możesz odebrać temu użytkownikowi takiej iloci punktów.';
$lang['Points_thanks_donation'] = 'Dziękuje za twoj± dotację.';
$lang['Click_return_points_donate'] = 'Kliknij %sTutaj%s aby powrócić do Dotacji Punktów';
$lang['Points_cant_donate'] = 'Nie możesz dawać okrelonej ilosci punktów temu użytkownikowi.';
$lang['Points_cant_donate_self'] = 'Nie możesz dotować punktów sobie.';
$lang['Points_user_donation_off'] = 'Dotacja punktów nie jest wl±czona.';
$lang['Click_return_pointscp'] = 'Kliknij %sTutaj%s aby powrócić do Panelu Kontrolnego Punktów';
$lang['Points_user_updated'] = '%s zostały zaktualizowane pomylnie.';
$lang['Points_mass_edit'] = 'Masowa Edycja Użytkowników';
$lang['Points_mass_edit_explain'] = 'Wpisz Nazyw Użytkowników jedna pod drug±.';
$lang['Points_notify'] = 'Zawsze powiadamiaj mnie o dotacji punktów';
$lang['Points_notify_explain'] = 'Wysyłaj do mnie e-maila jak kto dotuje mi %s';
$lang['Points_enter_some_donate'] = 'Wpisz iloć punktów które chce dotować.';
// End Points System MOD
#
#-----[ Otwórz ]------------------------------------------
#
memberlist.php
#
#-----[ Znajdz ]------------------------------------------
#
$lang['Email'], $lang['Website'], $lang['Sort_Top_Ten'], $lang['helped'], $lang['Visits'], $lang['Spend time']
#
#-----[ Po tym w lini dodaj ]------------------------------------------
#
,$board_config['points_name']
#
#-----[ Znajdz ]------------------------------------------
#
$mode_types = array('joined', 'lastvisit', 'username', 'location', 'posts', 'email', 'website', 'topten', 'special_rank'
#
#-----[ Po tym w lini dodaj ]------------------------------------------
#
, 'points'
#
#-----[ Znajdz ]------------------------------------------
#
'L_POST_TIME' => $lang['Last_Post'],
#
#-----[ Po tym dodaj ]------------------------------------------
#
'L_POINTS' => $board_config['points_name'],
#
#-----[ Znajdz ]------------------------------------------
#
case 'special_rank':
$order_by = "u.special_rank $sort_order LIMIT $start, " . $user_topics_per_page;
break;
#
#-----[ Po tym dodaj ]------------------------------------------
#
case 'points':
$order_by = "user_points $sort_order LIMIT $start," . $user_topics_per_page;
break;
#
#-----[ Znajdz ]------------------------------------------
#
$sql = "SELECT u.username, u.user_id, u.user_level, u.user_jr, u.user_viewemail, u.user_posts, u.user_lastvisit, u.user_session_time, u.user_regdate, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_viewaim, u.user_yim, u.user_msnm, u.user_avatar, u.user_avatar_type, u.user_allowavatar, u.user_gender, u.user_custom_color, u.can_custom_color, u.special_rank, u.user_visit
#
#-----[ IN LINE Po tym dodaj ]------------------------------------------
#
, user_points
#
#-----[ Znajdz ]------------------------------------------
#
$www = ( $row['user_website'] ) ? '<a href="' . $row['user_website'] . '" target="_userwww" rel="nofollow">' . $lang['Visit_website'] . '</a>' : '';
#
#-----[ Po tym dodaj ]------------------------------------------
#
$user_points = $row['user_points'];
#
#-----[ Znajdz ]------------------------------------------
#
'MSN' => $msn,
'YIM_IMG' => $yim_img,
'YIM' => $yim,
#
#-----[ Po tym dodaj ]------------------------------------------
#
'POINTS' => $user_points,
#
#-----[ Otwórz ]------------------------------------------
#
posting.php
#
#-----[ Znajdz ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
include($phpbb_root_path . 'includes/functions_post.'.$phpEx);
#
#-----[ Po tym dodaj ]------------------------------------------
#
include($phpbb_root_path . 'includes/functions_points.'.$phpEx);
#
#-----[ Otwórz ]------------------------------------------
#
profile.php
#
#-----[ Znajdz ]------------------------------------------
#
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
#
#-----[ Po tym dodaj ]------------------------------------------
#
include($phpbb_root_path . 'includes/functions_points.'.$phpEx);
#
#-----[ Otwórz ]------------------------------------------
#
templates/subSilver/admin/forum_edit_body.tpl
#
#-----[ Znajdz ]------------------------------------------
#
<td class="row2"><select name="forumstatus">{S_STATUS_LIST}</select></td>
</tr>
<tr>
#
#-----[ Po tym dodaj ]------------------------------------------
#
<td class="row1">{L_POINTS_DISABLED}</td>
<td class="row2"><select name="points_disabled">{S_POINTS_LIST}</select></td>
</tr>
<tr>
#
#-----[ Otwórz ]------------------------------------------
#
templates/subSilver/admin/user_edit_body.tpl
#
#-----[ Znajdz ]------------------------------------------
#
<td class="row1" colspan="2"><span class="gensmall">{L_SPECIAL_EXPLAIN}</span></td>
</tr>
<tr>
#
#-----[ Po tym dodaj ]------------------------------------------
#
<td class="row1"><span class="gen">{L_POINTS}</span></td>
<td class="row2">
<input type="text" name="points" maxlength="12" value="{POINTS}" size="12" />
</td>
</tr>
<tr>
#
#-----[ Otwórz ]------------------------------------------
#
templates/subSilver/memberlist_body.tpl
#
#-----[ Znajdz ]------------------------------------------
#
<th class="thTop" nowrap="nowrap">{L_POSTS}</th>
#
#-----[ Po tym dodaj ]------------------------------------------
#
<th class="thTop" nowrap="nowrap">{L_POINTS}</th>
#
#-----[ Znajdz ]------------------------------------------
#
<td class="{memberrow.ROW_CLASS}" width="3%" align="center" valign="middle"><span class="gen">{memberrow.POSTS}</span></td>
#
#-----[ Po tym dodaj ]------------------------------------------
#
<td class="{memberrow.ROW_CLASS}" width="3%" align="center" valign="middle"><span class="gen">{memberrow.POINTS}</span></td>
#
#-----[ Znajdz ]------------------------------------------
#
<td class="catbottom" colspan="4" height="28" align="left">{U_STAFF}</td><td class="catbottom" colspan="{COLSPAN}" height="28" align="right">{U_SEARCH_USERS}</td>
#
#-----[ REPLACE WITH ]------------------------------------------
#
<td class="catbottom" colspan="5" height="28" align="left">{U_STAFF}</td><td class="catbottom" colspan="{COLSPAN}" height="28" align="right">{U_SEARCH_USERS}</td>
#
#-----[ Otwórz ]------------------------------------------
#
templates/subSilver/profile_add_body.tpl
#
#-----[ Znajdz ]------------------------------------------
#
<!-- END switch_gg -->
#
#-----[ Po tym dodaj ]------------------------------------------
#
<td class="row1"><span class="gen">{L_NOTIFY_DONATION}:</span><br />
<span class="gensmall">{L_NOTIFY_DONATION_EXPLAIN}</span></td>
<td class="row2">
<input type="radio" name="notifydonation" value="1" {NOTIFY_DONATION_YES} />
<span class="gen">{L_YES}</span>
<input type="radio" name="notifydonation" value="0" {NOTIFY_DONATION_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
#
#-----[ Otwórz ]------------------------------------------
#
templates/subSilver/profile_view_body.tpl
#
#-----[ Znajdz ]------------------------------------------
#
<!-- END interests -->
#
#-----[ Po tym dodaj ]------------------------------------------
#
<tr>
<td valign="top" align="right" nowrap="nowrap"><span class="gen">{L_POINTS}:</span></td>
<td><b><span class="gen">{POINTS}</span></b><span class="genmed">{DONATE_POINTS}</span></td>
</tr>
#
#-----[ Otwórz ]------------------------------------------
#
templates/subSilver/viewtopic_body.tpl
#
#-----[ Znajdz ]------------------------------------------
#
{postrow.POSTER_FROM}
#
#-----[ AFTER ADD ]------------------------------------------
#
{postrow.POINTS}{postrow.DONATE_POINTS}<br>
#
#-----[ Otwórz ]------------------------------------------
#
viewtopic.php
#
#-----[ Znajdz ]------------------------------------------
#
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
#
#-----[ Po tym dodaj ]------------------------------------------
#
include($phpbb_root_path . 'includes/functions_points.'.$phpEx);
#
#-----[ Znajdz ]------------------------------------------
#
u.user_posts,
#
#-----[ W lini po tym dodaj ]------------------------------------------
#
u.user_points,
#
#-----[ Znajdz ]------------------------------------------
#
$user_sig_bbcode_uid = $postrow[$i]['user_sig_bbcode_uid'];
#
#-----[ Po tym dodaj ]------------------------------------------
#
if ($poster_id != ANONYMOUS)
{
$user_points = ($userdata['user_level'] == ADMIN || user_is_authed($userdata['user_id'])) ? '<a href="' . append_sid("pointscp.$phpEx?" . POST_USERS_URL . "=" . $postrow[$i]['user_id']) . '" class="gensmall" title="' . sprintf($lang['Points_link_title'], $board_config['points_name']) . '">' . $board_config['points_name'] . '</a>' : $board_config['points_name'];
$user_points = '<br />' . $user_points . ': ' . $postrow[$i]['user_points'];
if ($board_config['points_donate'] && $userdata['user_id'] != ANONYMOUS && $userdata['user_id'] != $poster_id)
{
$donate_points = '<br />' . sprintf($lang['Points_donate'], '<a href="' . append_sid("pointscp.$phpEx?mode=donate&" . POST_USERS_URL . "=" . $postrow[$i]['user_id']) . '" class="gensmall" title="' . sprintf($lang['Points_link_title_2'], $board_config['points_name']) . '">', '</a>');
}
else
{
$donate_points = '';
}
}
else
{
$user_points = '';
$donate_points = '';
}
#
#-----[ Znajdz ]------------------------------------------
#
'IP' => $ip,
'DELETE_IMG' => $delpost_img,
'DELETE' => $delpost,
#
#-----[ Po tym dodaj ]------------------------------------------
#
'POINTS' => $user_points,
'DONATE_POINTS' => $donate_points,
#
#-----[ Otwórz ]------------------------------------------
#
admin/modules_data.php
#
#-----[ Znajdz ]------------------------------------------
#
'Resync_page_posts' => array("admin_post_count_resync.$phpEx", 22),
#
#-----[ Po tym dodaj ]------------------------------------------
#
'Point_system' => array("admin_points.$phpEx", 100),
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
#
#-----[ Uruchom plik ]-------------------------------------------
#
update_user_points.php
# EoM |
|
|
|
|
|
Woytec
Pomógł: 2596 razy Posty: 7676
|
Wysłany: 21-12-2013, 17:05
|
|
|
Oprócz wgrania plików modyfikacji musisz również zmienić istniejące. |
|
|
|
|
pietruszka4444
Posty: 47
|
Wysłany: 25-12-2013, 22:18 wszystko
|
|
|
wgrałem już to wszystko , ale nie wiem jak dać komuś punkty , pokazuje mi się tylko w panelu administratora Kod: | Ustawienia Systemu Punktów
Dodawaj po napisaniu postów
Pozwól użytkownikom zdobywać za pisanie nowych tematów oraz odpowiedzi Tak Nie
Włącz Dotację
Pozwól użytkowniom dotować ich przyjaciołom Tak Nie
Nazwa dla punktów
Wpisz nazwę dla punktów która będzie używana na forum np. (pieniądze, złoto)
Punkty za Odpowied
Liczba które zostaną dodane za napisanie odpowiedzi do tematu
Punkty za Nowy Temat
Liczba które zostaną dodane za napisanie nowego tematu
Gry Autoryzowane
Wpisz ID grup, które będą miały dostęp do Panelu Kontrolnego Grup. Wpisz jeden ID w jednej linii |
[ Dodano: 26-12-2013, 15:01 ]
Pomoże ktoś ??
[ Komentarz dodany przez: Woytec: 26-12-2013, 15:09 ]
Posty są automatycznie łączone |
|
|
|
|
Gadatliwa Kasia
|
|
|
|
damianek20003
Posty: 5
|
Wysłany: 07-10-2014, 14:40
|
|
|
Nie da się dodać...
Tylko za napisanie tematu, odpowiedź etc. |
_________________ 50524013 - szukasz pomocy? PISZ |
|
|
|
|
|
Nie możesz pisać nowych tematów Nie możesz odpowiadać w tematach Nie możesz zmieniać swoich postów Nie możesz usuwać swoich postów Nie możesz głosować w ankietach Nie możesz załączać plików na tym forum Możesz ściągać załączniki na tym forum
|
Dodaj temat do Ulubionych Wersja do druku
|
Kopiowanie wszelkich treści zawartych na forum, modyfikacji oraz instrukcji bez zgody administracji i autorów tematów/postów zabronione!
Powered by phpBB modified by Przemo © 2003 phpBB
| Strona wygenerowana w 0,13 sekundy. Zapytań do SQL: 14 | |
|
|