• [MOD COMPLETE] Show newest images in main cat from sub cat. + paging! 3 0 5 1
Currently:  

Author Topic: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!  (Read 69770 times)

0 Members and 1 Guest are viewing this topic.

Offline dosensteck

  • Full Member
  • ***
  • Posts: 160
    • View Profile
NOT MY MOD, FOUND IN GOOGLE CACHE! NO SUPPORT!
Mod Author: rproctor

PAGING PROBLEM GELÖST

You can go hee to my test site which I mess with code and what not. This is a direct link to a main category which has the master_cat turned on and this mod installed.

http://www.digitalgod.biz/test/categories.php?cat_id=4

I needed a way to better organize my categories. I didnt want my main categories to have any submissions, only my sub categories, but it looks so ugly when you view a main category and it says 0 images found. So, instead with a few tweeks, I made categories that I selected display the images of the subcategories.

The downfall is that if you select a category to display subcat images, it will only display FIRST LEVEL sub cat images. Also, if you upload an image where it is specified to show sub cat images, the image will now show up in the category, this is why you should only upload to sub cats that are not checked to disply subcat images. However, you can check sub cats to display sub cat images if that sub cat has a sub cat. Sub cat main cat blue cat green cat... Confused yet? Wink

1) First thing to do is create a field in the CATEGORIES_TABLE using a program like PHPMyAdmin. This field should be named cat_master and a type of tinyint(1), not null, and 0 for default.

2) Now, the boring part. Its time to edit the admin category file so that we can edit this field via ACP. Open admin/categories.php and find

Code: [Select]
  $cat_hits = intval(trim($HTTP_POST_VARS['cat_hits']));

Add after

Code: [Select]
  $cat_master = intval(trim($HTTP_POST_VARS['cat_master']));

2.1) find

Code: [Select]
            SET cat_name = '$cat_name', cat_description = '$cat_description', cat_parent_id = $cat_parent_id, cat_hits = $cat_hits, auth_viewcat = $auth_viewcat, auth_viewimage = $auth_viewimage, auth_download = $auth_download, auth_upload = $auth_upload, auth_directupload = $auth_directupload, auth_vote = $auth_vote, auth_sendpostcard = $auth_sendpostcard, auth_readcomment = $auth_readcomment, auth_postcomment = $auth_postcomment

Replace with

Code: [Select]
            SET cat_name = '$cat_name', cat_description = '$cat_description', cat_parent_id = $cat_parent_id, cat_hits = $cat_hits, auth_viewcat = $auth_viewcat, auth_viewimage = $auth_viewimage, auth_download = $auth_download, auth_upload = $auth_upload, auth_directupload = $auth_directupload, auth_vote = $auth_vote, auth_sendpostcard = $auth_sendpostcard, auth_readcomment = $auth_readcomment, auth_postcomment = $auth_postcomment, cat_master = $cat_master

2.2) find

Code: [Select]
  $sql = "SELECT cat_name, cat_description, cat_parent_id, cat_hits, auth_viewcat, auth_viewimage, auth_download, auth_upload, auth_directupload, auth_vote, auth_sendpostcard, auth_readcomment, auth_postcomment

Replace with

Code: [Select]
  $sql = "SELECT cat_name, cat_description, cat_parent_id, cat_hits, auth_viewcat, auth_viewimage, auth_download, auth_upload, auth_directupload, auth_vote, auth_sendpostcard, auth_readcomment, auth_postcomment, cat_master

2.3) find

Code: [Select]
  show_input_row($lang['field_hits'], "cat_hits", $result['cat_hits'], 5);

add after

Code: [Select]
  show_radio_row("cat_master", "cat_master", $result['cat_master']);

2.4) find

Code: [Select]
  $sql = "SELECT cat_id, cat_name, cat_description, cat_parent_id, cat_hits, cat_order, auth_viewcat, auth_viewimage, auth_download, auth_upload, auth_directupload, auth_vote, auth_sendpostcard, auth_readcomment, auth_postcomment

Replace with

Code: [Select]
  $sql = "SELECT cat_id, cat_name, cat_description, cat_parent_id, cat_hits, cat_order, auth_viewcat, auth_viewimage, auth_download, auth_upload, auth_directupload, auth_vote, auth_sendpostcard, auth_readcomment, auth_postcomment, cat_master
/
3) Now its time to make it work. Open 4images/categories.php and find

Code: [Select]
//-----------------------------------------------------
//--- Show Categories ---------------------------------
//-----------------------------------------------------

Add right before it

Code: [Select]
$sql = "SELECT cat_master
      FROM ".CATEGORIES_TABLE."
      WHERE cat_id = $cat_id";
$master_cat = $site_db->query_firstrow($sql);

3.1) Next find

Code: [Select]
"cat_name" => htmlspecialchars($cat_cache[$cat_id]['cat_name']),
Change to

Code: [Select]
"cat_name2" => htmlspecialchars($cat_cache[$cat_id]['cat_name']),
in 4images v1.7.6 find:
Code: [Select]
  "cat_name" => format_text($cat_cache[$cat_id]['cat_name'], 2),
Change to
Code: [Select]
  "cat_name2" => format_text($cat_cache[$cat_id]['cat_name'], 2),

3.2) Find

Code: [Select]
if (!$num_rows)  {
  $thumbnails = "";
  $msg = $lang['no_images'];
}

Replace with

Code: [Select]
if (!$num_rows)  {
  $thumbnails = "";
      if ($master_cat['cat_master'] == 1){
           $msg = "";
      }
      else{
           $msg = $lang['no_images'];
      }
}

3.3) Now find

Code: [Select]
$site_template->register_vars("thumbnails", $thumbnails);
unset($thumbnails);

Add below

Code: [Select]


//-----------------------------------------------------
//--- Show Sub Images ---------------------------------
//-----------------------------------------------------

if ($master_cat['cat_master'] == 1){



$sql = "SELECT cat_parent_id
        FROM ".CATEGORIES_TABLE."
      WHERE cat_parent_id = $cat_id";
$total_subs = $site_db->query($sql);
$num_subs = $site_db->get_numrows($total_subs);



$sql = "SELECT i.image_id, i.cat_id, i.image_active, c.cat_parent_id
        FROM (".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c)
        WHERE i.image_active = 1 AND c.cat_parent_id = $cat_id AND c.cat_id = i.cat_id";

$result2 = $site_db->query($sql);
$num_rows2 = $site_db->get_numrows($result2);


$link_arg = $site_sess->url(ROOT_PATH."categories.php?".URL_CAT_ID."=".$cat_id);

//include(ROOT_PATH.'includes/paging.php');
$getpaging = new Paging($page, $perpage, $num_rows2, $link_arg);
$offset = $getpaging->get_offset();


$sql = "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_description, i.image_keywords, i.image_date, i.image_active, i.image_media_file, i.image_thumb_file, i.image_download_url, i.image_allow_comments, i.image_comments, i.image_downloads, i.image_votes, i.image_rating, i.image_hits".$additional_sql.", c.cat_parent_id, c.cat_name".get_user_table_field(", u.", "user_name")."
        FROM (".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c)
        LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = i.user_id)
        WHERE i.image_active = 1 AND c.cat_parent_id = $cat_id AND c.cat_id = i.cat_id
        ORDER BY ".$config['image_order']." ".$config['image_sort']."
        LIMIT $offset, $perpage";
$result = $site_db->query($sql);
$num_rows = $site_db->get_numrows($result);


$imgtable_width = ceil((intval($config['image_table_width'])) / $config['image_cells']);
if ((substr($config['image_table_width'], -1)) == "%") {
  $imgtable_width .= "%";
}

$additional_sql = "";
if (!empty($additional_image_fields)) {
  foreach ($additional_image_fields as $key => $val) {
    $additional_sql .= ", i.".$key;
  }
}

if (!$num_rows)  {
  $thumbnails = "";
  $msg = $lang['no_images'];
}
else {
  $thumbnails = "<table width=\"".$config['image_table_width']."\" border=\"0\" cellpadding=\"".$config['image_table_cellpadding']."\" cellspacing=\"".$config['image_table_cellspacing']."\">\n";
  $count = 0;
  $bgcounter = 0;
  while ($image_row = $site_db->fetch_array($result)){
    if ($count == 0) {
      $row_bg_number = ($bgcounter++ % 2 == 0) ? 1 : 2;
      $thumbnails .= "<tr class=\"imagerow".$row_bg_number."\">\n";
    }
    $thumbnails .= "<td width=\"".$imgtable_width."\"  =\"top\">\n";

    show_image($image_row);
    $thumbnails .= $site_template->parse_template("thumbnail_bit");
    $thumbnails .= "\n</td>\n";

    $count++;
    if ($count == $config['image_cells']) {
      $thumbnails .= "</tr>\n";
      $count = 0;
    }
  } // end while

  if ($count > 0)  {
    $leftover = ($config['image_cells'] - $count);
    if ($leftover > 0) {
      for ($i = 0; $i < $leftover; $i++){
        $thumbnails .= "<td width=\"".$imgtable_width."\">\n&nbsp;\n</td>\n";
      }
      $thumbnails .= "</tr>\n";
    }
  }
  $thumbnails .= "</table>\n";
} //end else
$site_template->register_vars("thumbnails", $thumbnails);
unset($thumbnails);
}

4) Here is the last and easiest part. Open 4images/templates/<your_template>/categories.php and change {cat_name} to {cat_name2}.

5) Now upload your edited files to your site. Next enter your ACP and select "Edit categories". You should notice a new field under hits called cat_master, change this to yes to enable this mod for that category. Dont forget, if you upload an image to that category and it has cat_master enabled that image will now show, so you should disable uploading for that category.

Thats about it, hope it works ok, I tested my own instructions on a new installation to make sure I did everything right, and it all seems to be ok.

DEMO: http://www.hobby-fotografen.com/categories.php?cat_id=19

ps: sorry for my bad english :/


so, habe das pagingproblem nun doch in den griff bekommen, und der mod funktioniert jetzt einwandfrei (vielleicht nicht sauber gecodet - funzt aber :D)


« Last Edit: April 19, 2009, 10:27:12 PM by V@no »

Offline Vincent

  • 4images Moderator
  • Addicted member
  • *****
  • Posts: 1.195
    • View Profile
    • www.foto-kocher.com
Re: [MOD COMPLETE] Show newest images in main cat from sub cat.
« Reply #1 on: October 23, 2005, 04:07:25 PM »
the Link in the TOP is not working and i got this error
----
Warning: mysql_connect(): Access denied for user: 'digital_tester@localhost' (Using password: YES) in /home/digital/public_html/test/includes/db_mysql.php on line 39

DB Error: Could not connect to the database server (localhost, digital_tester).

Beati pauperi spiritus

4images 1.7 // My Installed Mods


Offline dosensteck

  • Full Member
  • ***
  • Posts: 160
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat.
« Reply #2 on: October 23, 2005, 06:00:09 PM »
the Link in the TOP is not working and i got this error
----
Warning: mysql_connect(): Access denied for user: 'digital_tester@localhost' (Using password: YES) in /home/digital/public_html/test/includes/db_mysql.php on line 39

DB Error: Could not connect to the database server (localhost, digital_tester).



ist from the originalpost from rproctor - i post a demolink to my site

Offline dosensteck

  • Full Member
  • ***
  • Posts: 160
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat.
« Reply #3 on: October 31, 2005, 01:14:55 PM »
hat vielleicht irgendjemand zeit sich das pagingproblem anzusehen? ich bin leider nicht der hellste in php und schon schwer daran verzweifelt :/

habe mir andere systeme angesehen wie die das machen - leider habe ich dadurch auch keine lösung gefunden :/


Offline dosensteck

  • Full Member
  • ***
  • Posts: 160
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat.
« Reply #4 on: November 02, 2005, 03:04:50 AM »
hat vielleicht irgendjemand zeit sich das pagingproblem anzusehen? ich bin leider nicht der hellste in php und schon schwer daran verzweifelt :/

habe mir andere systeme angesehen wie die das machen - leider habe ich dadurch auch keine lösung gefunden :/




so, habe das pagingproblem nun doch in den griff bekommen, und der mod funktioniert jetzt einwandfrei (vielleicht nicht sauber gecodet - funzt aber :D)

allerdings funktioniert die linkreihenfolge nichtmehr richtig wenn man in der detailpage weiterblättert

Offline Riser

  • Pre-Newbie
  • Posts: 3
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #5 on: November 09, 2005, 11:31:00 AM »
Hi dosensteck,
seit Tagen versuche ich, diesen Mod zum laufen zu bringen, aber es will nicht funzen. :(

Im ACP erhalte ich beim Klick auf "Kategorien bearbeiten" folgende Fehlermeldung:

Parse error: parse error, unexpected T_STRING in /meinedomain/4images/admin/categories.php on line 513

Der Code sihet so aus (line 513 ist hier die Zeile '$sql = "SELECT cat_name, cat_description,...')

----

  if (empty($error)) {
    $sql = "UPDATE ".CATEGORIES_TABLE."
            $sql = "SELECT cat_name, cat_description, cat_parent_id, cat_hits, auth_viewcat, auth_viewimage, auth_download, auth_upload, auth_directupload, auth_vote, auth_sendpostcard, auth_readcomment, auth_postcomment, cat_master
            show_radio_row("cat_master", "cat_master", $result['cat_master']);
    WHERE cat_id = $cat_id";
    $result = $site_db->query($sql);

    $msg = ($result) ? $lang['cat_edit_success'] : $lang['cat_edit_error'];
    $action = "modifycats";
  }
  else {
    $msg .= sprintf("<span class=\"marktext\">%s</span>", $lang['lostfield_error']);
    $action = "editcat";
  }
}

------

Bei der Ansicht der Cat.-Seiten selbst erhalte ich außerdem den Error:

Parse error: parse error, unexpected '{' in /meinedomain/4images/categories.php on line 128

Der Code sieht so aus (line 128 ist die erste Zeile dieses Abschnittes 'if (....'):

----

if (!$num_rows)  {
  $thumbnails = "";
      if ($master_cat['cat_master'] == 1){
           $msg = "";
      }
      else{
           $msg = $lang['no_images'];
      }
}

-----

Kannst du oder jemand sonst mir BITTE behilflich sein, kenne mich mit php leider sehr wenig aus und langsam verlier ich die Nerven. ;-)

Grüße
Riser

PS: Alles was ich will, ist die Darstellung der neusten Bilder auf den Cat.-Seiten, d.h. neuste Bilder in der jeweiligen Cat/Subcat. Gibts dafür nicht noch eine einfachere Lösung, müsste doch eigentlich Standart sein, oder?

Offline dosensteck

  • Full Member
  • ***
  • Posts: 160
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #6 on: November 12, 2005, 11:39:39 PM »
habe den oberen code aktualisiert, jetzt müsste es funktionieren, war mein fehler! sorry für die umstände :(

Offline ch€ri{Bi}²

  • Sr. Member
  • ****
  • Posts: 315
  • A PRoBLeM wIthOUt SoLuTioN Is NoT rEAllY a PRoBLeM
    • View Profile
    • Pat's Gallery
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #7 on: November 13, 2005, 12:39:09 PM »
Quote
Parse error: parse error, unexpected T_STRING in /meinedomain/4images/admin/categories.php on line 513

Der Code sihet so aus (line 513 ist hier die Zeile '$sql = "SELECT cat_name, cat_description,...')

----

  if (empty($error)) {
    $sql = "UPDATE ".CATEGORIES_TABLE."
            $sql = "SELECT cat_name, cat_description, cat_parent_id, cat_hits, auth_viewcat, auth_viewimage, auth_download, auth_upload, auth_directupload, auth_vote, auth_sendpostcard, auth_readcomment, auth_postcomment, cat_master
            show_radio_row("cat_master", "cat_master", $result['cat_master']);
    WHERE cat_id = $cat_id";
    $result = $site_db->query($sql);

    $msg = ($result) ? $lang['cat_edit_success'] : $lang['cat_edit_error'];
    $action = "modifycats";
  }
  else {
    $msg .= sprintf("<span class=\"marktext\">%s</span>", $lang['lostfield_error']);
    $action = "editcat";
  }
}

the line indicated in red should not be written at this position  :roll:
ch€ri{Bi}²


Offline dosensteck

  • Full Member
  • ***
  • Posts: 160
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #8 on: November 17, 2005, 03:35:44 PM »
ok, the paging works, the sub images show in the main cat


but, when i click a image the next and previous imagelink  is not corecct...  :?:

has anyone a idea? where is the code fot this part?

Offline Riser

  • Pre-Newbie
  • Posts: 3
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #9 on: December 17, 2005, 05:11:48 PM »
@dosensteck, scheint jetzt zu funktionieren. Vielen Dank, dass du dir die Mühe gemacht hast, deine Lösung hier nochmal zu posten. Du hast mir einen Riesengefallen getan. Entschuldige bitte mein spätes Reply, bin kurz nach meinem Post in Urlaub gefahren und hab mein Problem daher erstmal beiseite gelegt. Nochmals danke!

Gruß
Riser

PS: Juhuuuu! :D

Offline Riser

  • Pre-Newbie
  • Posts: 3
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #10 on: December 17, 2005, 09:46:21 PM »
@dosensteck, the previous/next-links work fine on my site but the paging didn't, so I've added one little thing and now it works. Here is what I did:


3.3)Now find

Code:
$site_template->register_vars("thumbnails", $thumbnails);
unset($thumbnails);

Add below

Code:


//-----------------------------------------------------
//--- Show Sub Images ---------------------------------
//-----------------------------------------------------

if ($master_cat['cat_master'] == 1){



$sql = "SELECT cat_parent_id
        FROM ".CATEGORIES_TABLE."
      WHERE cat_parent_id = $cat_id";
$total_subs = $site_db->query($sql);
$num_subs = $site_db->get_numrows($total_subs);



$sql = "SELECT i.image_id, i.cat_id, i.image_active, c.cat_parent_id
        FROM ".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c
        WHERE i.image_active = 1 AND c.cat_parent_id = $cat_id AND c.cat_id = i.cat_id";

$result2 = $site_db->query($sql);
$num_rows2 = $site_db->get_numrows($result2);


$link_arg = $site_sess->url(ROOT_PATH."categories.php?".URL_CAT_ID."=".$cat_id);

//include(ROOT_PATH.'includes/paging.php');
$getpaging = new Paging($page, $perpage, $num_rows2, $link_arg);
$offset = $getpaging->get_offset();


$site_template->register_vars(array(
  "paging" => $getpaging->get_paging(),
  "paging_stats" => $getpaging->get_paging_stats()
));


$sql = "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_description, i.image_keywords, i.image_date, i.image_active, i.image_media_file, i.image_thumb_file, i.image_download_url, i.image_allow_comments, i.image_comments, i.image_downloads, i.image_votes, i.image_rating, i.image_hits".$additional_sql.", c.cat_parent_id, c.cat_name".get_user_table_field(", u.", "user_name")."
        FROM ".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c
        LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = i.user_id)
        WHERE i.image_active = 1 AND c.cat_parent_id = $cat_id AND c.cat_id = i.cat_id
        ORDER BY ".$config['image_order']." ".$config['image_sort']."
        LIMIT $offset, $perpage";
$result = $site_db->query($sql);
$num_rows = $site_db->get_numrows($result);


$imgtable_width = ceil((intval($config['image_table_width'])) / $config['image_cells']);
if ((substr($config['image_table_width'], -1)) == "%") {
  $imgtable_width .= "%";
}

$additional_sql = "";
if (!empty($additional_image_fields)) {
  foreach ($additional_image_fields as $key => $val) {
    $additional_sql .= ", i.".$key;
  }
}

if (!$num_rows)  {
  $thumbnails = "";
  $msg = $lang['no_images'];
}
else {
  $thumbnails = "<table width=\"".$config['image_table_width']."\" border=\"0\" cellpadding=\"".$config['image_table_cellpadding']."\" cellspacing=\"".$config['image_table_cellspacing']."\">\n";
  $count = 0;
  $bgcounter = 0;
  while ($image_row = $site_db->fetch_array($result)){
    if ($count == 0) {
      $row_bg_number = ($bgcounter++ % 2 == 0) ? 1 : 2;
      $thumbnails .= "<tr class=\"imagerow".$row_bg_number."\">\n";
    }
    $thumbnails .= "<td width=\"".$imgtable_width."\"  =\"top\">\n";

    show_image($image_row);
    $thumbnails .= $site_template->parse_template("thumbnail_bit");
    $thumbnails .= "\n</td>\n";

    $count++;
    if ($count == $config['image_cells']) {
      $thumbnails .= "</tr>\n";
      $count = 0;
    }
  } // end while

  if ($count > 0)  {
    $leftover = ($config['image_cells'] - $count);
    if ($leftover > 0) {
      for ($i = 0; $i < $leftover; $i++){
        $thumbnails .= "<td width=\"".$imgtable_width."\">\n&nbsp;\n</td>\n";
      }
      $thumbnails .= "</tr>\n";
    }
  }
  $thumbnails .= "</table>\n";
} //end else
$site_template->register_vars("thumbnails", $thumbnails);
unset($thumbnails);
}

Everything red is what I've added. That's it, thanks again for the help!

Greetings
Riser

Offline abda53bd

  • Sr. Member
  • ****
  • Posts: 486
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #11 on: January 28, 2006, 07:38:15 PM »
just a note.. for this mod to work.. you need to make a database entry..

under the default

4images_categories

make a new field called
name: cat_master
type: tinyint(4)
collation: none
attributes: none
Null: No
Default 0
Extra: none

i did this mod.. and it still didnt work.. so i used the /admin/categories.php from another site, from before the hack, and plugged it in.. worked fine.. there were some other mods done to it, so i dont know if it will work with yours.. but if you want to try mine out.. feel free. im not going to try to figure out what makes this version work, and the other from this mod/page not work. this is also from 1.7.1

Offline cpuswe

  • Newbie
  • *
  • Posts: 47
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #12 on: March 05, 2006, 12:00:14 PM »
Got this to work, but i wish to have "cat_master=yes" by default on all categories, how do i do that?

Edit: Solved it myself.

Just changed "Default" to 1 when added the above.

/Thomas
« Last Edit: March 05, 2006, 12:38:26 PM by cpuswe »

Offline cpuswe

  • Newbie
  • *
  • Posts: 47
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #13 on: March 05, 2006, 07:32:19 PM »
That did not work after all. It does the intended and shows the pictures from respective subcategories in main category. BUT, when you check the single subcategories they apear empty.

The problem is solved by changing cat_master to no in the subcategory.

Idea anyone?

(I made a new post because this topic did not move to the first page when i did the previous post)

/Thomas

Offline Tierfotografin

  • Pre-Newbie
  • Posts: 6
    • View Profile
Re: [MOD COMPLETE] Show newest images in main cat from sub cat. + paging!
« Reply #14 on: March 20, 2006, 01:40:01 AM »
Also ich bekomme es auch nicht zum laufen... Fehlermeldung beim Bearbeiten der Kategorien

 Parse error: parse error, unexpected T_STRING in /meinedomain/4images/admin/categories.php on line 645

Ich find es auch mehr als schade, dass für eigentlich eine so selbstverständliche Sache, man ein Mod braucht.

Könnte mir den jemand einbauen ???

Danke
Doreen