Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Pearl

Pages: [1]
1
First of all thank you so much...is there a copy of this in english?



//--- Ab hier zusätzliche Infos im Benutzerprofil -----------------------------------------
//--- Download von Bildern des Users im Profil , von mawenzi , 10.07.2008 -----------------
    $sql = "SELECT SUM(image_downloads) AS sum_downloads
            FROM ".IMAGES_TABLE."
            WHERE ".get_user_table_field("", "user_id")." = ".$user_id."";
    $row = $site_db->query_firstrow($sql);
    $sum_downloads = (isset($row['sum_downloads'])) ? $row['sum_downloads'] : 0;
    $sql = "SELECT COUNT(*) AS count_downloads
            FROM ".IMAGES_TABLE."
            WHERE ".get_user_table_field("", "user_id")." = ".$user_id."
            AND image_downloads > 0";
    $row = $site_db->query_firstrow($sql);
    $count_downloads = (isset($row['count_downloads'])) ? $row['count_downloads'] : 0;
    $lang['lang_downloads'] = "Download von Bildern des Users:";
    $lang['lang_downloads_1'] = "gesamt";
    if ($sum_downloads == 1) {
        $lang['lang_downloads_2'] = "Download von";
    } else {
        $lang['lang_downloads_2'] = "Downloads von";
    }
    if ($count_downloads == 1) {
        $lang['lang_downloads_3'] = "Bild";
    } else {
        $lang['lang_downloads_3'] = "Bildern";
    }
    $site_template->register_vars(array(
      "lang_downloads" => $lang['lang_downloads'],
      "sum_downloads" => $lang['lang_downloads_1']." ".$sum_downloads." ".$lang['lang_downloads_2']." ".$count_downloads." ".$lang['lang_downloads_3'],
     ));
//--- Download von Bildern des Users im Profil , von mawenzi , 10.07.2008 -----------------

2
Can someone translate this in english pls?
Download von Bildern des Users:gesamt 0 Downloads von 0 Bildern

3
Thanks mawenzi !

Sorry for the late respond, I'm still learning  my way around! :D

4
That would be nice to see next page images instead all images on one page..any help is apprecated!

Thanks!

5
Mods & Plugins (Releases & Support) / Re: [Mod] bbcode Smileys
« on: April 09, 2008, 05:06:02 AM »
Hi guys!

I am hopeing I can get some help here...I have added the smilies but for some reason its not showing the smilies when commenting...here is the screenshot..

I am up to date with the latest 4images.


6
Mods & Plugins (Requests & Discussions) / detail.php
« on: February 07, 2008, 12:48:28 AM »
How can I add a link to click on thumbnail to view larger?
 :)

7
Discussion & Troubleshooting / MySpace Code Layouts
« on: February 05, 2008, 06:55:42 PM »
Is there anyway to add another codebox in the upload that members can paste thier code into codebox, for others to copy and paste?
I hope I made me self clear?
 :D
Thanks

8
Discussion & Troubleshooting / Display Thumbnails
« on: February 04, 2008, 09:06:18 AM »
How can I set to display 9 thumbnails?  (example like 3 one row and 3 on the next row etc?)

Ihanks

Pages: [1]