vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   [album] latest album at forumhome (https://vborg.vbsupport.ru/showthread.php?t=209389)

bartek24m 03-25-2009 08:39 AM

[album] latest album at forumhome
 
I installed moditication vbadvanced which shows the latest picture of all my albums on my forumhome page

i would like to place the newest albums, just the same as in mysite.com/album.php

http://up.clubbers.pl/img/69rua.png

but i cant figure out how to change the my sql query acually i have this:

file: modules/coveralbums.php
PHP Code:

<?php
// set how many to display
$tot '4';
//dateline 
//rand(NOW())
// replace dateline below with rand(NOW()) if you want it random
$orderby "dateline";


$lpictures $db->query_read("
  SELECT albumpicture.*, album.*, user.username, user.usergroupid,
  IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid 
  FROM " 
TABLE_PREFIX "albumpicture AS albumpicture
  LEFT JOIN " 
TABLE_PREFIX "album AS album ON(album.albumid = albumpicture.albumid)
  LEFT JOIN " 
TABLE_PREFIX "user AS user ON(user.userid = album.userid)
  WHERE album.state = 'public' 
  ORDER BY 
$orderby DESC LIMIT 0, $tot  
  "
);
    
$cols $db->num_rows($lpictures);

    while (
$lpicture $db->fetch_array($lpictures))
    {
    
$lpicture['musername'] = fetch_musername($lpicture);
    
$lpicture['title'] = trim(strip_quotes($lpicture['title']));
    eval(
'$albumpics .= "' fetch_template('adv_portal_albumsbits') . '";');
    }
    
eval(
'$home["$mods[modid]"][\'content\'] = "' fetch_template('adv_portal_albums') . '";');

?>

and 2 new template:

adv_portal_albums

Code:

<tr>
<td class="alt1" colspan="$cols">
<table width="100%" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]" border="0">
<tr>
$albumpics
</tr>
</table>
</td>
</tr>

adv_portal_albumsbit

Code:

<td class="alt1" align="center">
<a href="$vboptions[bburl]/album.php?albumid=$lpicture[albumid]&amp;pictureid=$lpicture[pictureid]">
<img title="$lpicture[title]" class="inlineimg" src="$vboptions[bburl]/picture.php?pictureid=$lpicture[pictureid]&amp;albumid=$lpicture[albumid]&amp;thumb=1"  border="0" alt="$lpicture[title]" />
</a>
<br />
<a href="$vboptions[bburl]member.php?u=$lpicture[userid]">$lpicture[musername]</a>
<br />
$lpicture[title]
</td>



Does anyone could help me ?

TNCclubman 03-25-2009 08:20 PM

Very interested in the solution to this as well. Want to display latest albums from 1 user (me) on a new vb powered page.

bartek24m 03-25-2009 08:38 PM

yeah !
like this modification:
https://vborg.vbsupport.ru/showthread.php?t=192696

but it works only @ forumhome page


All times are GMT. The time now is 08:59 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01012 seconds
  • Memory Usage 1,727KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete