master
Rubenwardy 2012-12-22 17:00:31 +00:00
parent 461504196e
commit e44f4b5c58
1 changed files with 40 additions and 0 deletions

40
README.md Normal file
View File

@ -0,0 +1,40 @@
Punbb Medals Extension
======================
This project adds user medals to punbb.
You can see a screenshot here: http://multa.bugs3.com/upload/punbb_medals.png
Setting Up
==========
At the momment, there is no install script, and you need to do some preparation.
1 - Database
------------
Go to the "users" table in the database, and add a field called "medals"
2 - viewtopic.php
-----------------
At line 303 in viewtopic.php, look for a line like this:
'SELECT' => 'u.email, u.title, u.url, u.location, u.signature, u.email_setting, u.num_posts,
add 'u.medals' to there
2 - hooks
---------
There is no hook existing in the right place. you need to add one.
Go to line 562 in viewtopic.php, look for a paragraph like this:
<ul class="author-info">
<?php echo implode("\n\t\t\t\t\t\t", $forum_page['author_info'])."\n"; ?>
</ul>
add <?php($hook = get_hook('vt_row_userbar_bottom')) ? eval($hook) : null;?>
before </ul>