please give me two mintues and I will update u with results dont log off please!
thank you
--------------- Added [DATE]1371404477[/DATE] at [TIME]1371404477[/TIME] ---------------
Here is what I have done but is not working
created two templates
created two plugins
one template with name memberinfo_block_mpphotos
contains
PHP Code:
<div id="view-photos" class="<vb:if condition="$selected_tab == 'mpphotos'">selected_view_section<vb:else />view_section</vb:if><vb:if condition="$userinfo['userid'] != $bbuserinfo['userid']"> vm_other_prof</vb:if>">
<div class="blocksubhead subsectionhead userprof_headers userprof_headers_border">
<h4 class="subsectionhead-understate">User albums</h4>
</div>
<div class="albums">
<h5 class="blocksubhead smaller">
<a class="textcontrol" href="album.php?{vb:raw session.sessionurl}do=addalbum">{vb:rawphrase add_album}</a>
<span class="albums_total">{vb:raw albumcount}</span> {vb:rawphrase albums}
</h5>
<div class="blockbody userprof_content userprof_content_border">
<ul class="albumslist blockrow image_link_list">
{vb:raw albumbits2}
</ul>
</div>
</div>
</div>
second template with name memberinfo_block_mpphotosbit
contains
PHP Code:
<li class="floatcontainer">
<div class="albumthumb_container image_container">
<a class="album_showcase image_bit" href="album.php?{vb:raw session.sessionurl}albumid={vb:raw album.albumid}">
<vb:if condition="$album['hasthumbnail']">
<img alt="{vb:raw album.title_html}" class="album_showcase" src="attachment.php?{vb:raw session.sessionurl}attachmentid={vb:raw album.attachmentid}&thumb=1&d={vb:raw album.thumbnail_dateline}"/>
<vb:else />
<img alt="{vb:raw album.title_html}" class="album_showcase" src="{vb:stylevar imgdir_misc}/default-album.png"/>
</vb:if>
</a>
</div>
<div class="album_content row_content">
<h6>
<a href="album.php?{vb:raw session.sessionurl}albumid={vb:raw album.albumid}">{vb:raw album.title_html}</a>
<vb:if condition="$show['moderated']"> <img class="inlineimg" src="{vb:stylevar imgdir_misc}/moderated_small.gif" alt="{vb:rawphrase x_moderated_pictures, {vb:raw album.moderatedcount}}" /></vb:if>
</h6>
<vb:if condition="$album['lastpicturedate']">
<span class="shade">{vb:raw album.picturedate}<vb:if condition="$show['detailedtime']">{vb:raw album.picturetime}</vb:if></span>
</vb:if>
</div>
</li>
and with the plugins
first plugin with hook position member_profileblock_album_query
contains
PHP Code:
$albums = $this->registry->db->query_read_slave("
SELECT album.*,
a.attachmentid, album.moderation,
fd.thumbnail_dateline, fd.thumbnail_width, fd.thumbnail_height, IF(fd.thumbnail_filesize > 0, 1, 0) AS hasthumbnail
$hook_query_fields
FROM " . TABLE_PREFIX . "album AS album
LEFT JOIN " . TABLE_PREFIX . "attachment AS a ON (album.coverattachmentid = a.attachmentid)
LEFT JOIN " . TABLE_PREFIX . "filedata AS fd ON (fd.filedataid = a.filedataid)
$hook_query_joins
WHERE
album.userid = ". $this->profile->userinfo['userid'] . "
AND
album.state IN ('" . implode("', '", $state) . "')
$sql
$hook_query_where
ORDER BY album.lastpicturedate DESC
");
$albumbits2 = '';
while ($album = $this->registry->db->fetch_array($albums))
{
$album['picturedate'] = vbdate($this->registry->options['dateformat'], $album['lastpicturedate'], true);
$album['picturetime'] = vbdate($this->registry->options['timeformat'], $album['lastpicturedate']);
$album['title_html'] = fetch_word_wrapped_string(fetch_censored_text($album['title']));
$album['coverdimensions'] = ($album['thumbnail_width'] ? "width=\"$album[thumbnail_width]\" height=\"$album[thumbnail_height]\"" : '');
$templater = vB_Template::create('memberinfo_block_mpphotosbit');
$templater->register('album', $album);
$albumbits2 .= $templater->render();
$templater = vB_Template::create('memberinfo_block_mpphotos');
$templater->register('albumbits2', $albumbits2);
}
$templater = vB_Template::create('memberinfo_block_mpphotos');
$templater->register('albumbits2', $albumbits2);
second plugin with hook position member_complete
contains
PHP Code:
if (isset($vbulletin->GPC['tab']))
{
$selected_tab = $vbulletin->GPC['tab'];
}
$blockinfo['title'] = "الصور";
$blockid = "mpphotos";
$taburl = $memberurl = fetch_seo_url('member', $prepared) . "&tab=mpphotos#mpphotos";
$templater = vB_Template::create('memberinfo_tab');
$templater->register('selected_tab', $selected_tab);
$templater->register('relpath', $relpath);
$templater->register('blockinfo', $blockinfo);
$templater->register('blockid', $blockid);
$templater->register('taburl', $taburl);
$template_hook['profile_tabs_last'] .= $templater->render();
// ### Your code to fill the tab ###
// Don't forget you need to register any variables for use in templates
$templater = vB_Template::create('memberinfo_block_mpphotos');
$templater->register('selected_tab', $selected_tab);
$template_hook['profile_tabs'] .= $templater->render();
is not really working?????