1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
| 1. / 2. / ...
#
#-----[ OPEN ]------------------------------------------
# ODER ALTERNATIVE SPRACHE
#
/lang/German/squads.php
#
#-----[ FIND ]------------------------------------------
#
$cs_lang['since'] = 'Dabei seit';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$cs_lang['manschaftspic'] = 'Mannschaftsbild';
#
#-----[ OPEN ]------------------------------------------
#
/mods/squads/view.php
#
#-----[ FIND ]------------------------------------------
#
$data['lang']['part_of'] = sprintf($cs_lang['body_list'], $clan_link);
#
#-----[ AFTER, ADD ]------------------------------------------
#
// ANPASSUNG:
// DIE $squads_ids anpassen
// UND AUCH DIE cs_html_img-Bilder
// FÜR JEDEN weiteren Squad muss ein elseif ... hinzugefügt werden!
if ($squads_id==3){
$data['squad']['bild'] = cs_html_img('[LINK ZUM BILD]');
$pic=1;
}elseif ($squads_id==2){
$data['squad']['bild'] = cs_html_img('[LINK ZUM BILD]');
$pic=1;
}
else{
$data['squad']['bild'] = ' ';
$pic=0;
}
$data['if']['squadpic'] = $pic == '1' ? true : false;
// ENDE
#
#-----[ OPEN ]------------------------------------------
#
/themes/base/users/view.tpl
#
#-----[ FIND ]------------------------------------------
#
<br />
#
#-----[ AFTER, ADD ]------------------------------------------
#
{if:squadpic}
<table class="forum" style="width:{page:width}" cellpadding="0" cellspacing="1">
<tr>
<td class="headb">{lang:manschaftspic}</td>
</tr>
<tr>
<td class="centerb">{squad:bild}</td>
</tr>
</table>
<br />
{stop:squadpic}
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
|