Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Template Shares
Notices

Reply
Thread Tools
  #1  
Old 26th July 2024, 07:23
soneigr soneigr is offline
Senior Member
 
Join Date: Dec 2023
Greece
Posts: 114
Default Template Shares Ultimate 2.3
Good morning, I have bought TS UE 2.3 from their official website, although I am waiting for my payment to be cleared after I paid 16 euros for the number of months I will have it, I would like to ask if anyone has it so they can send it to me to install it because I don't I know when xam will want to come in and look at my payment and send me the codes to connect to the client program.
Reply With Quote
  #2  
Old 27th July 2024, 14:23
jh0ng jh0ng is offline
Senior Member
 
Join Date: Jun 2012
Canada
Posts: 33
Default
Quote:
Originally Posted by soneigr View Post
Good morning, I have bought TS UE 2.3 from their official website, although I am waiting for my payment to be cleared after I paid 16 euros for the number of months I will have it, I would like to ask if anyone has it so they can send it to me to install it because I don't I know when xam will want to come in and look at my payment and send me the codes to connect to the client program.
Why buying that code has NO HELP at ALL.
Reply With Quote
  #3  
Old 28th July 2024, 05:53
soneigr soneigr is offline
Senior Member
 
Join Date: Dec 2023
Greece
Posts: 114
Default
Quote:
Originally Posted by jh0ng View Post
Why buying that code has NO HELP at ALL.
Indeed, that means I will cry for my 16 euros that I gave? did they go I received an email confirming my account when I registered it.
Reply With Quote
  #4  
Old 28th July 2024, 06:35
TraceR's Avatar
TraceR TraceR is offline
BittyTorrent
 
Join Date: Mar 2015
Posts: 143
Default
there is no 2.3 its only Templateshares Ultimate Edition 2.2 last version
Reply With Quote
  #5  
Old 1st August 2024, 06:59
soneigr soneigr is offline
Senior Member
 
Join Date: Dec 2023
Greece
Posts: 114
Default
Quote:
Originally Posted by TraceR View Post
there is no 2.3 its only Templateshares Ultimate Edition 2.2 last version
Good morning, so only version 2.2 was released? Are the older versions 2.1 2.0 1.9 1.8 not released here on bvlist or somewhere else so I can download them and try them?
Reply With Quote
  #6  
Old 12th August 2024, 09:29
ratataa ratataa is offline
Member
 
Join Date: Aug 2024
Posts: 9
Default
Quote:
Originally Posted by soneigr View Post
Good morning, so only version 2.2 was released? Are the older versions 2.1 2.0 1.9 1.8 not released here on bvlist or somewhere else so I can download them and try them?
I think you can no longer buy a licence . does the system allow you to download tsue 2.2 so you don't pay for nothing?
Reply With Quote
  #7  
Old 15th August 2024, 14:32
miralsplet's Avatar
miralsplet miralsplet is offline
Senior Member
 
Join Date: Nov 2013
P2P
Posts: 90
Default TSUEPlugin_recentTorrents 2.2
TSUEPlugin_recentTorrents which shows all added torrents on your site. Plugin installation. Save the original on your PC and add this one. He enjoys it.
PHP Code:
<?php 
function TSUEPlugin_recentTorrents($pluginPosition ""$pluginOptions = array(  ))
{
    global 
$TSUE;
    if( isset(
$_COOKIE["tsue_rt_switch_list"]) ) 
    {
        return 
TSUEPlugin_recentTorrents_Switch_List($pluginPosition$pluginOptions);
    }

    
$WHERE " WHERE t.awaitingModeration = 0";
    if( !empty(
$TSUE["TSUE_Member"]->info["defaultTorrentCategories"]) ) 
    {
        
$categories = array(  );
        foreach( 
$TSUE["TSUE_Member"]->info["defaultTorrentCategories"] as $categoryID 
        {
            
$categories[] = intval($categoryID);
        }
        if( !empty(
$categories) ) 
        {
            
$WHERE " WHERE t.awaitingModeration = 0 AND c.cid IN (" implode(","$categories) . ")";
        }

    }

    
$cacheName "TSUEPlugin_recentTorrents_" md5($TSUE["TSUE_Member"]->info["languageid"] . $WHERE);
    
$isToggled isToggled("recentTorrents");
    
$class = (!$isToggled "" "hidden");
    
$toggleSrc = (!$isToggled "bullet_toggle_minus" "bullet_toggle_plus");
    if( !(
$Images $TSUE["TSUE_Cache"]->readCache($cacheName)) ) 
    {
        
$TorrentsQuery $TSUE["TSUE_Database"]->query("SELECT SQL_NO_CACHE t.*, a.filename, i.content as IMDBContent, c.cname, cc.cname as parentCategoryName, m.membername 
    FROM tsue_torrents t 
    LEFT JOIN tsue_attachments a ON(t.tid=a.content_id&&a.content_type=\"torrent_images\")
    LEFT JOIN tsue_imdb i USING(tid)
    LEFT JOIN tsue_torrents_categories c ON(t.cid=c.cid) 
    LEFT JOIN tsue_torrents_categories cc ON(c.pid=cc.cid) 
    LEFT JOIN tsue_members m ON (t.owner=m.memberid)
    " 
$WHERE 
    GROUP BY t.tid 
    ORDER BY t.added DESC"
);
        if( 
$TSUE["TSUE_Database"]->num_rows($TorrentsQuery) ) 
        {
            require_once(
REALPATH "/library/functions/functions_getTorrents.php");
            
$divWidthClass = ($TSUE["TSUE_Plugin"]->hasSideBarPlugins "widthSidebar" "widthoutSidebar");
            
$TSUE["TSUE_Template"]->loadJavascripts("scrollable");
            
$Images "\r\n\t\t\t<div class=\"items\">\r\n\t\t\t\t<div class=\"" $divWidthClass "\">";
            
$count 0;
            while( 
$Torrent $TSUE["TSUE_Database"]->fetch_assoc($TorrentsQuery) ) 
            {
                if( 
$count && $count == 
                {
                    
$Images .= "\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"" $divWidthClass "\">";
                }

                
$title addslashes(strip_tags($Torrent["name"]));
                
$title .= "<br>" $TSUE["TSUE_Language"]->phrase["torrents_seeders"] . ": " friendly_number_format($Torrent["seeders"]) . " / \r\n\t\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_leechers"] . ": " friendly_number_format($Torrent["leechers"]) . " / \r\n\t\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_size"] . ": " friendly_size($Torrent["size"]) . " /  \r\n\t\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_times_completed"] . ": " friendly_number_format($Torrent["times_completed"]);
                
$categoryName "";
                if( 
$Torrent["parentCategoryName"] ) 
                {
                    
$categoryName .= $Torrent["parentCategoryName"] . " > ";
                }

                
$categoryName .= $Torrent["cname"];
                
$title .= "<br>" get_phrase("torrents_category"$categoryName);
                
$Torrent["options"] = unserialize($Torrent["options"]);
                if( 
isAnonymouse($Torrent) ) 
                {
                    
$Torrent["membername"] = get_phrase("torrents_anonymouse_uploader");
                }

                
$owner get_phrase("torrents_owner"convert_relative_time($Torrent["added"], false), $Torrent["membername"]);
                
$title .= "<br>" $owner;
                
$title .= "<br>" str_replace("\"""'"getTorrentMultipliers($Torrent));
                
$hasValidImage is_valid_image($Torrent["filename"]);
                if( !
$hasValidImage && $Torrent["IMDBContent"] ) 
                {
                    
$IMDBContent unserialize($Torrent["IMDBContent"]);
                    if( 
is_file(REALPATH "/data/torrents/imdb/" $IMDBContent["title_id"] . ".jpg") ) 
                    {
                        
$count++;
                        eval(
"\$Images .= \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_image_imdb") . "\";");
                    }

                }
                else
                {
                    if( 
$hasValidImage 
                    {
                        
$count++;
                        eval(
"\$Images .= \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_image") . "\";");
                    }

                }

            }
            
$Images .= "\r\n\t\t\t\t</div>\r\n\t\t\t</div>";
            if( !
$count 
            {
                return 
"";
            }

            
$TSUE["TSUE_Cache"]->saveCache($cacheName$Images);
        }
        else
        {
            return 
NULL;
        }

    }
    else
    {
        
$TSUE["TSUE_Template"]->loadJavascripts("scrollable");
    }

    
$addVerticalClass = ($pluginPosition == "right" " vertical" "");
    eval(
"\$TSUEPlugin_recentTorrents = \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents") . "\";");
    return 
$TSUEPlugin_recentTorrents;
}

function 
TSUEPlugin_recentTorrents_Switch_List($pluginPosition ""$pluginOptions = array(  ), $pn 0)
{
    global 
$TSUE;
    
$isToggled isToggled("recentTorrents");
    
$class = (!$isToggled "" "hidden");
    
$toggleSrc = (!$isToggled "bullet_toggle_minus" "bullet_toggle_plus");
    
$maxTorrents getPluginOption($pluginOptions"max_recent_torrents"5);
    if( 
$maxTorrents 
    {
        
$maxTorrents 5;
    }

    
$WHERE " WHERE t.awaitingModeration = 0";
    if( !empty(
$TSUE["TSUE_Member"]->info["defaultTorrentCategories"]) ) 
    {
        
$categories = array(  );
        foreach( 
$TSUE["TSUE_Member"]->info["defaultTorrentCategories"] as $categoryID 
        {
            
$categories[] = intval($categoryID);
        }
        if( !empty(
$categories) ) 
        {
            
$WHERE " WHERE t.awaitingModeration = 0 AND c.cid IN (" implode(","$categories) . ")";
        }

    }

    
$LIMIT $maxTorrents;
    if( 
$pn 
    {
        
$n $pn $maxTorrents;
        
$LIMIT = (string) $n ", " $n;
    }

    
$TorrentsQuery $TSUE["TSUE_Database"]->query("SELECT SQL_NO_CACHE t.*, a.filename, i.content as IMDBContent, c.cname, cc.cname as parentCategoryName, m.membername 
    FROM tsue_torrents t 
    LEFT JOIN tsue_attachments a ON(t.tid=a.content_id&&a.content_type=\"torrent_images\")
    LEFT JOIN tsue_imdb i USING(tid)
    LEFT JOIN tsue_torrents_categories c ON(t.cid=c.cid) 
    LEFT JOIN tsue_torrents_categories cc ON(c.pid=cc.cid) 
    LEFT JOIN tsue_members m ON (t.owner=m.memberid)
    
$WHERE 
    GROUP BY t.tid 
    ORDER BY t.added DESC"
);
    if( 
$TSUE["TSUE_Database"]->num_rows($TorrentsQuery) ) 
    {
        require_once(
REALPATH "/library/functions/functions_getTorrents.php");
        
$count 0;
        
$recent_torrents_list "";
        while( 
$Torrent $TSUE["TSUE_Database"]->fetch_assoc($TorrentsQuery) ) 
        {
            
$torrentName strip_tags($Torrent["name"]);
            
$torrentDetails $TSUE["TSUE_Language"]->phrase["torrents_seeders"] . ": " friendly_number_format($Torrent["seeders"]) . " / \r\n\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_leechers"] . ": " friendly_number_format($Torrent["leechers"]) . " / \r\n\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_size"] . ": " friendly_size($Torrent["size"]) . " /  \r\n\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_times_completed"] . ": " friendly_number_format($Torrent["times_completed"]);
            
$categoryName "";
            if( 
$Torrent["parentCategoryName"] ) 
            {
                
$categoryName .= "<a href=\"" $TSUE["TSUE_Settings"]->settings["global_settings"]["website_url"] . "/?p=torrents&amp;pid=10&amp;cid=" $Torrent["parentCategoryCID"] . "\">" $Torrent["parentCategoryName"] . "</a> > ";
            }

            
$categoryName .= "<a href=\"" $TSUE["TSUE_Settings"]->settings["global_settings"]["website_url"] . "/?p=torrents&amp;pid=10&amp;cid=" $Torrent["cid"] . "\">" $Torrent["cname"] . "</a>";
            
$categoryName get_phrase("torrents_category"$categoryName);
            
$Torrent["options"] = unserialize($Torrent["options"]);
            if( 
isAnonymouse($Torrent) ) 
            {
                
$Torrent["membername"] = get_phrase("torrents_anonymouse_uploader");
            }

            
$Owner get_phrase("torrents_owner"convert_relative_time($Torrent["added"], false), getMembername($Torrent["membername"], $Torrent["groupstyle"]));
            
$Flags str_replace("\"""'"getTorrentMultipliers($Torrent));
            
$title addslashes($torrentName);
            
$hasValidImage is_valid_image($Torrent["filename"]);
            if( !
$hasValidImage && $Torrent["IMDBContent"] ) 
            {
                
$IMDBContent unserialize($Torrent["IMDBContent"]);
                if( 
is_file(REALPATH "/data/torrents/imdb/" $IMDBContent["title_id"] . ".jpg") ) 
                {
                    
$count++;
                    eval(
"\$Image = \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_image_imdb") . "\";");
                }

            }
            else
            {
                if( 
$hasValidImage 
                {
                    
$count++;
                    eval(
"\$Image = \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_image") . "\";");
                }

            }

            if( isset(
$Image) && $Image 
            {
                eval(
"\$recent_torrents_list .= \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_list") . "\";");
            }

        }
        if( !
$count 
        {
            return 
"";
        }

        if( !
defined("IS_AJAX") ) 
        {
            eval(
"\$TSUEPlugin_recentTorrents_Switch_List = \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_switch") . "\";");
            return 
$TSUEPlugin_recentTorrents_Switch_List;
        }

        return 
$recent_torrents_list;
    }

    return 
show_error(get_phrase("message_nothing_found"), "-ERROR-");
}
Reply With Quote
  #8  
Old 15th August 2024, 15:22
Houmers Houmers is offline
Support
 
Join Date: Sep 2018
P2P
Posts: 93
Default
Quote:
Originally Posted by miralsplet View Post
TSUEPlugin_recentTorrents which shows all added torrents on your site. Plugin installation. Save the original on your PC and add this one. He enjoys it.
PHP Code:
<?php 
function TSUEPlugin_recentTorrents($pluginPosition ""$pluginOptions = array(  ))
{
    global 
$TSUE;
    if( isset(
$_COOKIE["tsue_rt_switch_list"]) ) 
    {
        return 
TSUEPlugin_recentTorrents_Switch_List($pluginPosition$pluginOptions);
    }

    
$WHERE " WHERE t.awaitingModeration = 0";
    if( !empty(
$TSUE["TSUE_Member"]->info["defaultTorrentCategories"]) ) 
    {
        
$categories = array(  );
        foreach( 
$TSUE["TSUE_Member"]->info["defaultTorrentCategories"] as $categoryID 
        {
            
$categories[] = intval($categoryID);
        }
        if( !empty(
$categories) ) 
        {
            
$WHERE " WHERE t.awaitingModeration = 0 AND c.cid IN (" implode(","$categories) . ")";
        }

    }

    
$cacheName "TSUEPlugin_recentTorrents_" md5($TSUE["TSUE_Member"]->info["languageid"] . $WHERE);
    
$isToggled isToggled("recentTorrents");
    
$class = (!$isToggled "" "hidden");
    
$toggleSrc = (!$isToggled "bullet_toggle_minus" "bullet_toggle_plus");
    if( !(
$Images $TSUE["TSUE_Cache"]->readCache($cacheName)) ) 
    {
        
$TorrentsQuery $TSUE["TSUE_Database"]->query("SELECT SQL_NO_CACHE t.*, a.filename, i.content as IMDBContent, c.cname, cc.cname as parentCategoryName, m.membername 
    FROM tsue_torrents t 
    LEFT JOIN tsue_attachments a ON(t.tid=a.content_id&&a.content_type=\"torrent_images\")
    LEFT JOIN tsue_imdb i USING(tid)
    LEFT JOIN tsue_torrents_categories c ON(t.cid=c.cid) 
    LEFT JOIN tsue_torrents_categories cc ON(c.pid=cc.cid) 
    LEFT JOIN tsue_members m ON (t.owner=m.memberid)
    " 
$WHERE 
    GROUP BY t.tid 
    ORDER BY t.added DESC"
);
        if( 
$TSUE["TSUE_Database"]->num_rows($TorrentsQuery) ) 
        {
            require_once(
REALPATH "/library/functions/functions_getTorrents.php");
            
$divWidthClass = ($TSUE["TSUE_Plugin"]->hasSideBarPlugins "widthSidebar" "widthoutSidebar");
            
$TSUE["TSUE_Template"]->loadJavascripts("scrollable");
            
$Images "\r\n\t\t\t<div class=\"items\">\r\n\t\t\t\t<div class=\"" $divWidthClass "\">";
            
$count 0;
            while( 
$Torrent $TSUE["TSUE_Database"]->fetch_assoc($TorrentsQuery) ) 
            {
                if( 
$count && $count == 
                {
                    
$Images .= "\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"" $divWidthClass "\">";
                }

                
$title addslashes(strip_tags($Torrent["name"]));
                
$title .= "<br>" $TSUE["TSUE_Language"]->phrase["torrents_seeders"] . ": " friendly_number_format($Torrent["seeders"]) . " / \r\n\t\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_leechers"] . ": " friendly_number_format($Torrent["leechers"]) . " / \r\n\t\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_size"] . ": " friendly_size($Torrent["size"]) . " /  \r\n\t\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_times_completed"] . ": " friendly_number_format($Torrent["times_completed"]);
                
$categoryName "";
                if( 
$Torrent["parentCategoryName"] ) 
                {
                    
$categoryName .= $Torrent["parentCategoryName"] . " > ";
                }

                
$categoryName .= $Torrent["cname"];
                
$title .= "<br>" get_phrase("torrents_category"$categoryName);
                
$Torrent["options"] = unserialize($Torrent["options"]);
                if( 
isAnonymouse($Torrent) ) 
                {
                    
$Torrent["membername"] = get_phrase("torrents_anonymouse_uploader");
                }

                
$owner get_phrase("torrents_owner"convert_relative_time($Torrent["added"], false), $Torrent["membername"]);
                
$title .= "<br>" $owner;
                
$title .= "<br>" str_replace("\"""'"getTorrentMultipliers($Torrent));
                
$hasValidImage is_valid_image($Torrent["filename"]);
                if( !
$hasValidImage && $Torrent["IMDBContent"] ) 
                {
                    
$IMDBContent unserialize($Torrent["IMDBContent"]);
                    if( 
is_file(REALPATH "/data/torrents/imdb/" $IMDBContent["title_id"] . ".jpg") ) 
                    {
                        
$count++;
                        eval(
"\$Images .= \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_image_imdb") . "\";");
                    }

                }
                else
                {
                    if( 
$hasValidImage 
                    {
                        
$count++;
                        eval(
"\$Images .= \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_image") . "\";");
                    }

                }

            }
            
$Images .= "\r\n\t\t\t\t</div>\r\n\t\t\t</div>";
            if( !
$count 
            {
                return 
"";
            }

            
$TSUE["TSUE_Cache"]->saveCache($cacheName$Images);
        }
        else
        {
            return 
NULL;
        }

    }
    else
    {
        
$TSUE["TSUE_Template"]->loadJavascripts("scrollable");
    }

    
$addVerticalClass = ($pluginPosition == "right" " vertical" "");
    eval(
"\$TSUEPlugin_recentTorrents = \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents") . "\";");
    return 
$TSUEPlugin_recentTorrents;
}

function 
TSUEPlugin_recentTorrents_Switch_List($pluginPosition ""$pluginOptions = array(  ), $pn 0)
{
    global 
$TSUE;
    
$isToggled isToggled("recentTorrents");
    
$class = (!$isToggled "" "hidden");
    
$toggleSrc = (!$isToggled "bullet_toggle_minus" "bullet_toggle_plus");
    
$maxTorrents getPluginOption($pluginOptions"max_recent_torrents"5);
    if( 
$maxTorrents 
    {
        
$maxTorrents 5;
    }

    
$WHERE " WHERE t.awaitingModeration = 0";
    if( !empty(
$TSUE["TSUE_Member"]->info["defaultTorrentCategories"]) ) 
    {
        
$categories = array(  );
        foreach( 
$TSUE["TSUE_Member"]->info["defaultTorrentCategories"] as $categoryID 
        {
            
$categories[] = intval($categoryID);
        }
        if( !empty(
$categories) ) 
        {
            
$WHERE " WHERE t.awaitingModeration = 0 AND c.cid IN (" implode(","$categories) . ")";
        }

    }

    
$LIMIT $maxTorrents;
    if( 
$pn 
    {
        
$n $pn $maxTorrents;
        
$LIMIT = (string) $n ", " $n;
    }

    
$TorrentsQuery $TSUE["TSUE_Database"]->query("SELECT SQL_NO_CACHE t.*, a.filename, i.content as IMDBContent, c.cname, cc.cname as parentCategoryName, m.membername 
    FROM tsue_torrents t 
    LEFT JOIN tsue_attachments a ON(t.tid=a.content_id&&a.content_type=\"torrent_images\")
    LEFT JOIN tsue_imdb i USING(tid)
    LEFT JOIN tsue_torrents_categories c ON(t.cid=c.cid) 
    LEFT JOIN tsue_torrents_categories cc ON(c.pid=cc.cid) 
    LEFT JOIN tsue_members m ON (t.owner=m.memberid)
    
$WHERE 
    GROUP BY t.tid 
    ORDER BY t.added DESC"
);
    if( 
$TSUE["TSUE_Database"]->num_rows($TorrentsQuery) ) 
    {
        require_once(
REALPATH "/library/functions/functions_getTorrents.php");
        
$count 0;
        
$recent_torrents_list "";
        while( 
$Torrent $TSUE["TSUE_Database"]->fetch_assoc($TorrentsQuery) ) 
        {
            
$torrentName strip_tags($Torrent["name"]);
            
$torrentDetails $TSUE["TSUE_Language"]->phrase["torrents_seeders"] . ": " friendly_number_format($Torrent["seeders"]) . " / \r\n\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_leechers"] . ": " friendly_number_format($Torrent["leechers"]) . " / \r\n\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_size"] . ": " friendly_size($Torrent["size"]) . " /  \r\n\t\t\t" $TSUE["TSUE_Language"]->phrase["torrents_times_completed"] . ": " friendly_number_format($Torrent["times_completed"]);
            
$categoryName "";
            if( 
$Torrent["parentCategoryName"] ) 
            {
                
$categoryName .= "<a href=\"" $TSUE["TSUE_Settings"]->settings["global_settings"]["website_url"] . "/?p=torrents&amp;pid=10&amp;cid=" $Torrent["parentCategoryCID"] . "\">" $Torrent["parentCategoryName"] . "</a> > ";
            }

            
$categoryName .= "<a href=\"" $TSUE["TSUE_Settings"]->settings["global_settings"]["website_url"] . "/?p=torrents&amp;pid=10&amp;cid=" $Torrent["cid"] . "\">" $Torrent["cname"] . "</a>";
            
$categoryName get_phrase("torrents_category"$categoryName);
            
$Torrent["options"] = unserialize($Torrent["options"]);
            if( 
isAnonymouse($Torrent) ) 
            {
                
$Torrent["membername"] = get_phrase("torrents_anonymouse_uploader");
            }

            
$Owner get_phrase("torrents_owner"convert_relative_time($Torrent["added"], false), getMembername($Torrent["membername"], $Torrent["groupstyle"]));
            
$Flags str_replace("\"""'"getTorrentMultipliers($Torrent));
            
$title addslashes($torrentName);
            
$hasValidImage is_valid_image($Torrent["filename"]);
            if( !
$hasValidImage && $Torrent["IMDBContent"] ) 
            {
                
$IMDBContent unserialize($Torrent["IMDBContent"]);
                if( 
is_file(REALPATH "/data/torrents/imdb/" $IMDBContent["title_id"] . ".jpg") ) 
                {
                    
$count++;
                    eval(
"\$Image = \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_image_imdb") . "\";");
                }

            }
            else
            {
                if( 
$hasValidImage 
                {
                    
$count++;
                    eval(
"\$Image = \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_image") . "\";");
                }

            }

            if( isset(
$Image) && $Image 
            {
                eval(
"\$recent_torrents_list .= \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_list") . "\";");
            }

        }
        if( !
$count 
        {
            return 
"";
        }

        if( !
defined("IS_AJAX") ) 
        {
            eval(
"\$TSUEPlugin_recentTorrents_Switch_List = \"" $TSUE["TSUE_Template"]->LoadTemplate("recent_torrents_switch") . "\";");
            return 
$TSUEPlugin_recentTorrents_Switch_List;
        }

        return 
$recent_torrents_list;
    }

    return 
show_error(get_phrase("message_nothing_found"), "-ERROR-");
}
dont woking
Reply With Quote
  #9  
Old 15th August 2024, 16:06
soneigr soneigr is offline
Senior Member
 
Join Date: Dec 2023
Greece
Posts: 114
Default
I have bought the monthly user license for 16 euros, but they never sent me the customer service for a month now so that I can basically connect the connection details to be able to download it.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 20:56. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2025, vBulletin Solutions Inc.