| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/chatme24.com/wwwroot/ |
Upload File : |
<?php
/* (C) Websplosion LLC, 2001-2021
IMPORTANT: This is a commercial software product
and any kind of using it must agree to the Websplosion's license agreement.
It can be found at http://www.chameleonsocial.com/license.doc
This notice may not be removed from the source code. */
include("./_include/core/main_start.php");
payment_check('gallery_view');
if (isset($g['options']['gallery']) and $g['options']['gallery'] == "N") Common::toHomePage();
$page = new CGalleryAlbums("gallery_albums_all", $g['tmpl']['dir_tmpl_main'] . "gallery_albums_all.html");
$header = new CHeader("header", $g['tmpl']['dir_tmpl_main'] . "_header.html");
$page->add($header);
$footer = new CFooter("footer", $g['tmpl']['dir_tmpl_main'] . "_footer.html");
$page->add($footer);
$where = ' a.access = "public" ';
if(guid()) {
if(guser('albums_to_see') == 'friends') {
$where = ' a.user_id = ' . to_sql(guid(), 'Number') . '
OR ( (f1.friend_id IS NOT NULL OR f2.friend_id IS NOT NULL OR
f3.friend_id IS NOT NULL OR f4.friend_id IS NOT NULL) AND a.access != "private" )';
} else {
$where = ' a.access = "public"
OR a.user_id = '. to_sql(guid(), 'Number') . '
OR (a.access = "friends" AND (f1.friend_id IS NOT NULL OR f2.friend_id IS NOT NULL OR
f3.friend_id IS NOT NULL OR f4.friend_id IS NOT NULL)) ';
}
}
$where = CGalleryAlbums::getCustomWhere($where);
//$page->m_debug = 'Y';
$page->m_sql_where = $where;
$sort_order = get_param('sort', 'date');
if($sort_order == 'views') {
$page->m_sql_order = 'a.views DESC';
} elseif($sort_order == 'title') {
$page->m_sql_order = 'a.title ASC';
} else {
$page->m_sql_order = 'a.date DESC';
}
include("./_include/core/main_close.php");
?>