Onderwerp bekijken
Vragen/Problemen in verband met infusions
\n\n";
if ((isset($prev['photo_id']) && isnum($prev['photo_id'])) || (isset($next['photo_id']) && ISnUM($next['photo_id']))) {
if (isset($prev)) { echo "\n"; }
if (isset($next)) { echo "\n"; }
}
echo "\n
 Onderwerp afdrukken
8 photos panel
riku
hey ik probeerde zojuist 8 photos panel gedownload maar zodra ik een panel ervan wil maken en hem in de center onderaan wil zetten zie ik hem nooit ik krijg nooit panels onderin ik wil hem voor me photogallery die bij mij als openingspagina staat ik heb me gallery.php geupload misschien dat iemand mij zou kunnen helpen alvast bedankt.
Vincent

/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: photogallery.php
| Author: Nick Jones (Digitanium)
| Co-Author: Robert Gaudyn (Wooya)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or >\n
\n";
echo "".$locale['400']." >\n";
echo "".$data['album_title']." >\n";
echo "".$data['photo_title']."\n
<<>>
\n";

echo "\n";
echo "
\n";
if ($data['photo_description']) {
echo nl2br(parseubb($data['photo_description'], "b|i|u|center|small|url|mail|img|quote"))."

\n";
}
echo $locale['433'].showdate("shortdate", $data['photo_datestamp'])."
\n";
echo $locale['434']."".$data['user_name']."
\n";
echo $locale['454']."$photo_size[0] x $photo_size[1] ".$locale['455']."
\n";
echo $locale['456'].parsebytesize($settings['photo_watermark'] ? filesize(PHOTODIR.$data['photo_filename']): filesize($photo_file))."
\n";
$photo_comments = dbcount("(comment_id)", DB_COMMENTS, "comment_type='P' AND comment_item_id='".$data['photo_id']."'");
echo ($photo_comments == 1 ? $locale['436b'] : $locale['436']).$photo_comments."
\n";
echo $locale['437'].($data['count_votes'] > 0 ? str_repeat("'*'", ceil($data['sum_rating'] / $data['count_votes'])) : $locale['438'])."
\n";
echo $locale['457'].$data['photo_views']."\n
\n";
closetable();
if ($data['photo_allow_comments']) { showcomments("P", DB_PHOTOS, "photo_id", $_GET['photo_id'], FUSION_SELF."?photo_id=".$_GET['photo_id']); }
if ($data['photo_allow_ratings']) { showratings("P", $_GET['photo_id'], FUSION_SELF."?photo_id=".$_GET['photo_id']); }
}
} elseif (isset($_GET['album_id']) && isnum($_GET['album_id'])) {
define("PHOTODIR", PHOTOS.(!SAFEMODE ? "album_".$_GET['album_id']."/" : ""));
$result = dbquery(
"SELECT ta.* FROM ".DB_PHOTO_ALBUMS." ta WHERE album_id='".$_GET['album_id']."'"
);
if (!dbrows($result)) {
redirect(FUSION_SELF);
} else {
$data = dbarray($result);
if (!checkgroup($data['album_access'])) {
redirect(FUSION_SELF);
} else {
$rows = dbcount("(photo_id)", DB_PHOTOS, "album_id='".$_GET['album_id']."'");
add_to_title($locale['global_201'].$data['album_title']);

if ($rows) {

opentable($locale['430']);
if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }
$result = dbquery(
"SELECT tp.*, tu.user_id,user_name, SUM(tr.rating_vote) AS sum_rating, COUNT(tr.rating_item_id) AS count_votes
FROM ".DB_PHOTOS." tp
LEFT JOIN ".DB_USERS." tu ON tp.photo_user=tu.user_id
LEFT JOIN ".DB_RATINGS." tr ON tr.rating_item_id = tp.photo_id AND tr.rating_type='P'
WHERE album_id='".$_GET['album_id']."' GROUP BY photo_id ORDER BY photo_order LIMIT ".$_GET['rowstart'].",".$settings['thumbs_per_page']
);
$counter = 0;
echo "\n\n\n\n
\n";
echo "".$locale['400']." >\n";
echo "".$data['album_title']."\n";
echo "
\n";

echo "\n\n";
while ($data = dbarray($result)) {
if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) { echo "\n\n"; }
echo "\n";
$counter++;
}
echo "\n
\n";
echo "".$data['photo_title']."

\n";
if ($data['photo_thumb1'] && file_exists(PHOTODIR.$data['photo_thumb1'])){
echo "'".$data['photo_thumb1']."'";
} else {
echo $locale['432'];
}
echo "


\n \n";
$photo_comments = dbcount("(comment_id)", DB_COMMENTS, "comment_type='P' AND comment_item_id='".$data['photo_id']."'");
echo $locale['435'].$data['photo_views']."

\n";
echo "
\n";
closetable();
}
if ($rows > $settings['thumbs_per_page']) { echo "
\n".makepagenav($_GET['rowstart'], $settings['thumbs_per_page'], $rows, 3, FUSION_SELF."?album_id=".$_GET['album_id']."&")."\n
\n"; }
}
}
} else {
opentable($locale['400']);
$rows = dbcount("(album_id)", DB_PHOTO_ALBUMS, groupaccess('album_access'Wink);
if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }
if ($rows) {
$result = dbquery(
"SELECT ta.*, tu.user_id,user_name FROM ".DB_PHOTO_ALBUMS." ta
LEFT JOIN ".DB_USERS." tu ON ta.album_user=tu.user_id
WHERE ".groupaccess('album_access'Wink." ORDER BY album_order
LIMIT ".$_GET['rowstart'].",".$settings['thumbs_per_page']
);
$counter = 0; $r = 0; $k = 1;
echo "\n\n";
while ($data = dbarray($result)) {
if ($counter != 0 && ($counter % $settings['thumbs_per_row'] == 0)) { echo "\n\n"; }
echo "\n";
echo "
\n";
echo "".$data['album_title']."

\n";
if ($data['album_thumb'] && file_exists(PHOTOS.$data['album_thumb'])){
echo "'".$data['album_thumb']."'";
} else {
echo $locale['402'];
}
echo "


\n\n";
echo $locale['405'].dbcount("(photo_id)", DB_PHOTOS, "album_id='".$data['album_id']."'")."

\n";
echo "
";
$result = dbquery("SELECT * FROM ".$db_prefix."photos ORDER BY photo_id DESC LIMIT 0,8");
if (dbrows($result) != 0) {
$i=0;
while($data = dbarray($result)) {
$itemsubject = trimlink($data['photo_id'], 23);
$itemdescription = trimlink($data['photo_title'], 16);
if ($i % 4 == 0 && $i != 0) { echo "";}
echo "\n";
$i++;
}

} else {

echo ""

}

echo "


$itemdescription
No results!

$counter++; $k++;
}
echo "\n\n";
closetable();
if ($rows > $settings['thumbs_per_page']) { echo "
\n".makepagenav($_GET['rowstart'], $settings['thumbs_per_page'], $rows, 3)."\n
\n"; }
}else{
echo "

".$locale['406']."

\n";
closetable();
}
}

require_once THEMES."templates/footer.php";
?>
Gewijzigd door riku op 15 December 2009, 18:20  
Spring naar forum:
Nieuw onderwerp Antwoorden
Gebruik BBcode of HTML om naar; '8 photos panel', te verwijzen!
BBcode:
HTML:
Vergelijkbare onderwerpen
Onderwerp Forum         Laatste bericht
Panel Code Needed Modificaties : 3 16 Apr 2019, 19:41
Panel Algemene v7 support : 3 07 Dec 2016, 19:53
last seen users panel Infusions : 1 03 Apr 2016, 22:29
Advanced Shoutbox Panel Infusions : 7 31 Mar 2016, 13:30
User Info Panel (Extended) 2.0 Infusions : 10 02 Feb 2016, 18:52