|
From: <be...@us...> - 2013-09-23 04:19:05
|
Revision: 12087
http://sourceforge.net/p/xoops/svn/12087
Author: beckmi
Date: 2013-09-23 04:19:03 +0000 (Mon, 23 Sep 2013)
Log Message:
-----------
added: user links to downloaders/voters (mamba)
Modified Paths:
--------------
XoopsModules/wfdownloads/trunk/wfdownloads/admin/ratings.php
XoopsModules/wfdownloads/trunk/wfdownloads/docs/changelog.txt
XoopsModules/wfdownloads/trunk/wfdownloads/docs/readme.txt
XoopsModules/wfdownloads/trunk/wfdownloads/templates/admin/wfdownloads_admin_ip_logslist.html
XoopsModules/wfdownloads/trunk/wfdownloads/templates/admin/wfdownloads_admin_ratingslist.html
Modified: XoopsModules/wfdownloads/trunk/wfdownloads/admin/ratings.php
===================================================================
--- XoopsModules/wfdownloads/trunk/wfdownloads/admin/ratings.php 2013-09-23 04:02:14 UTC (rev 12086)
+++ XoopsModules/wfdownloads/trunk/wfdownloads/admin/ratings.php 2013-09-23 04:19:03 UTC (rev 12087)
@@ -52,7 +52,7 @@
wfdownloads_xoops_cp_header();
$indexAdmin = new ModuleAdmin();
echo $indexAdmin->addNavigation($currentFile);
-
+
$GLOBALS['xoopsTpl']->assign('votes', $votes);
$GLOBALS['xoopsTpl']->assign('ratings_count', $ratings_count);
$GLOBALS['xoopsTpl']->assign('useravgrating', $useravgrating);
@@ -65,6 +65,7 @@
$rating_array = $rating->toArray();
$rating_array['formatted_date'] = formatTimestamp($rating->getVar('ratingtimestamp'), _DATESTRING);
$rating_array['submitter_uname'] = XoopsUser::getUnameFromId($rating->getVar('ratinguser'));
+ $rating_array['submitter_uid'] = $rating->getVar('ratinguser');
$rating_array['download_title'] = $downloads[$rating->getVar('lid')]->getVar('title');
$GLOBALS['xoopsTpl']->append('ratings', $rating_array);
}
Modified: XoopsModules/wfdownloads/trunk/wfdownloads/docs/changelog.txt
===================================================================
--- XoopsModules/wfdownloads/trunk/wfdownloads/docs/changelog.txt 2013-09-23 04:02:14 UTC (rev 12086)
+++ XoopsModules/wfdownloads/trunk/wfdownloads/docs/changelog.txt 2013-09-23 04:19:03 UTC (rev 12087)
@@ -1,4 +1,4 @@
-<b><u>=> Version 3.23 Beta (2013-09-21)</u></b>
+<b><u>=> Version 3.23 Beta (2013-09-22)</u></b>
- module standardization: header.php, admin/admin_header.php, xoops_version.php
- module standardization: standardize directories/files names/structures
- module standardization: standardize code headers
@@ -25,6 +25,7 @@
- added: folder checker (mamba + luciorota)
- added: file checker (luciorota)
- added: module is clonable, built-in module clone function (trabis/luciorota)
+- added: user links to downloaders/voters (mamba)
- removed: unupgraded languages from repository (luciorota)
- removed: unused templates (luciorota)
- removed: unused images files (luciorota)
Modified: XoopsModules/wfdownloads/trunk/wfdownloads/docs/readme.txt
===================================================================
--- XoopsModules/wfdownloads/trunk/wfdownloads/docs/readme.txt 2013-09-23 04:02:14 UTC (rev 12086)
+++ XoopsModules/wfdownloads/trunk/wfdownloads/docs/readme.txt 2013-09-23 04:19:03 UTC (rev 12087)
@@ -9,7 +9,7 @@
What is Wfdownloads ?
======================
-Wfdownloads is an advanced Downloads module for your XOOPS 2.x site. With this powerful module, you can easily set a downloads section on your site and offer unlimited amount of files to your users. The module supports subcategories, has a fully integrated permissions system as well as a complete notifications system.
+Wfdownloads is an advanced Downloads module for your XOOPS Website. With this powerful module, you can easily set a downloads section on your site and offer unlimited amount of files to your users. The module supports subcategories, has a fully integrated permissions system as well as a complete notifications system.
How to install or Update Wfdownloads
@@ -30,4 +30,4 @@
\wfdownloads\docs\lang_diff.txt
-XOOPS Development Team
\ No newline at end of file
+XOOPS Development Team
Modified: XoopsModules/wfdownloads/trunk/wfdownloads/templates/admin/wfdownloads_admin_ip_logslist.html
===================================================================
--- XoopsModules/wfdownloads/trunk/wfdownloads/templates/admin/wfdownloads_admin_ip_logslist.html 2013-09-23 04:02:14 UTC (rev 12086)
+++ XoopsModules/wfdownloads/trunk/wfdownloads/templates/admin/wfdownloads_admin_ip_logslist.html 2013-09-23 04:19:03 UTC (rev 12087)
@@ -15,7 +15,7 @@
<tr class="<{cycle values='even, odd'}>">
<td><{$ip_log.ip_address}></td>
<td align='center'><{$ip_log.date_timestamp}></td>
- <td align='center'><{$ip_log.uname}></td>
+ <td align='center'><a href='../../../userinfo.php?uid=<{$ip_log.uid}>'><{$ip_log.uname}></a></td>
</tr>
<{/foreach}>
</table>
Modified: XoopsModules/wfdownloads/trunk/wfdownloads/templates/admin/wfdownloads_admin_ratingslist.html
===================================================================
--- XoopsModules/wfdownloads/trunk/wfdownloads/templates/admin/wfdownloads_admin_ratingslist.html 2013-09-23 04:02:14 UTC (rev 12086)
+++ XoopsModules/wfdownloads/trunk/wfdownloads/templates/admin/wfdownloads_admin_ratingslist.html 2013-09-23 04:19:03 UTC (rev 12087)
@@ -34,7 +34,7 @@
<{foreach item=rating from=$ratings}>
<tr class="<{cycle values='even, odd'}>">
<td class='head'><{$rating.ratingid}></td>
- <td class='even'><{$rating.submitter_uname}></td>
+ <td class='even'><a href='../../../userinfo.php?uid=<{$rating.submitter_uid}>'><{$rating.submitter_uname}></a></td>
<td class='even'><{$rating.ratinghostname}></td>
<td class='even'><{$rating.download_title}></td>
<td class='even' align='center'><{$rating.rating}></td>
|