• Benutzerkarte
• Mitgliederliste
• Gameserver Liste
• HTH TeamSpeak³
• Fußball Tipprunde
• News
• Downloads
• Webkatalog
• Inhaltssuche
• Smiliemaker
• Kniffel
• Wordsearch
• Deal or no Deal
• Arcade Games
» Sport
» Action
» Casino
» Classic
» Strategie
» Denksport
» Rennspiele
• FAQ
• Team
• Werbemittel
• Kontaktieren Sie uns
» Impressum
» Datenschutzerklärung
HTH-C.com - Forum
Latest News
Latest Threads
Neuerung: Persönliche Galerie
Informationen zur Übernahme der Erweite..
HTH Blog - Version 2.0
#HTH.Systems - Betatester gesucht
Neueröffnung - PHPKit-Award.de
HTH Webchat v3
Happy Birthday
Bottyline
Heute, 0:00
Herzlich Willkommen
Botty
22.11.2024 - 20:45
Gibt es eigentlich noch jemand der PHPki..
Dooki
16.07.2024 - 19:47
PHPKit 1.6.6
WEBI
24.06.2024 - 12:58
PHPKit 1.6.6 ohne ASCE auf PHP8x
Myrddin
22.03.2023 - 12:36
55.043 Posts & 4.945 Themen in 78 Foren
Forenübersicht
»
Support / Hilfe
»
#HTH.Systems
»
Modifikationen
»
Affiliates Navigation Box
Forensuche
Suchbegriff
Benutzerauswahl
Ergebnisse anzeigen
Begriffe mittels
OR
(-) bzw.
AND
(+) verknüpfen.
Exakter Name des Autors
Suche nach ID
als Themen
als Beiträge
Affiliates Navigation Box
3 Beiträge in diesem Thema
Seiten (1):
1
Beiträge: 0
Wohnort: keine Angabe
HTH-Coins:
22.07.2014 - 10:42 Uhr
Beitrag:
#1
Moin, wäre es vill machbar das man es nachträglich hin bekommt das in der Affiliates Navbox für den Admin ein Hinweis erscheint das sich ein neuer Partner beworben hat?
Gruß
WEBI
Unberechenbares Urgestein
Beiträge: 4.930
Wohnort: Hannover
HTH-Coins: 76.827
24.07.2014 - 05:37 Uhr
Beitrag:
#2
Guten Morgen,
ungetestet, sollte jedoch funktionieren.
Static
- Datei:
pkinc/publicinc/navbox.hth.affiliates.st.php
Suche:
1
PHP-Quelltext
$ASNCount
=
$SQL
->
fetch_array
(
$SQL
->
query
(
"SELECT COUNT(*) FROM "
.
pkSQLTAB_AFFILIATES
.
" WHERE `status`='1'"
));
Füge darunter folgendes hinzu:
1
2
3
4
5
6
7
8
PHP-Quelltext
if(
getrights
(
'admin'
)) {
$ASACount
=
$SQL
->
fetch_array
(
$SQL
->
query
(
"SELECT COUNT(*) FROM "
.
pkSQLTAB_AFFILIATES
.
" WHERE `status`='0'"
));
$ASAText
=
$ASACount
[
0
] ==
1
?
$ASACount
[
0
].
' offene Bewerbung'
:
$ASACount
[
0
].
' offene Bewerbungen'
;
$ASARow
=
$ASACount
[
0
] <
1
?
''
:
'<br /><a style="text-decoration: none;" href="?path=affiliates&s=application">'
.
$ASAText
.
'</a>'
;
}
else {
$ASARow
=
''
;
}
Suche weiter nach:
1
PHP-Quelltext
$ASNOutput
=
'<div align="center">'
.
$ASNRow
.
'<br /><br /><a style="text-decoration: none;" href="?path=affiliates">Affiliate Übersicht</a></div>'
;
Ersetze es mit diesem:
1
PHP-Quelltext
$ASNOutput
=
'<div align="center">'
.
$ASNRow
.
'<br /><br /><a style="text-decoration: none;" href="?path=affiliates">Affiliate Übersicht</a>'
.
$ASARow
.
'</div>'
;
Scrollend
- Datei:
pkinc/publicinc/navbox.hth.affiliates.sc.php
Suche:
1
PHP-Quelltext
$ASNCount
=
$SQL
->
fetch_array
(
$SQL
->
query
(
"SELECT COUNT(*) FROM "
.
pkSQLTAB_AFFILIATES
.
" WHERE `status`='1'"
));
Füge darunter folgendes hinzu:
1
2
3
4
5
6
7
8
PHP-Quelltext
if(
getrights
(
'admin'
)) {
$ASACount
=
$SQL
->
fetch_array
(
$SQL
->
query
(
"SELECT COUNT(*) FROM "
.
pkSQLTAB_AFFILIATES
.
" WHERE `status`='0'"
));
$ASAText
=
$ASACount
[
0
] ==
1
?
$ASACount
[
0
].
' offene Bewerbung'
:
$ASACount
[
0
].
' offene Bewerbungen'
;
$ASARow
=
$ASACount
[
0
] <
1
?
''
:
'<br /><a style="text-decoration: none;" href="?path=affiliates&s=application">'
.
$ASAText
.
'</a>'
;
}
else {
$ASARow
=
''
;
}
Suche weiter nach:
1
PHP-Quelltext
$ASNOutput
=
'<marquee style="height: 120px;" scrollamount="2" scrolldelay="3" direction="down" onmouseover="stop()" onmouseout="start()"><div align="center">'
.
$ASNRow
.
'</div></marquee><br /><br /><div align="center"><a style="text-decoration: none;" href="?path=affiliates">Affiliate Übersicht</a></div>'
;
Ersetze es mit diesem:
1
PHP-Quelltext
$ASNOutput
=
'<marquee style="height: 120px;" scrollamount="2" scrolldelay="3" direction="down" onmouseover="stop()" onmouseout="start()"><div align="center">'
.
$ASNRow
.
'</div></marquee><br /><br /><div align="center"><a style="text-decoration: none;" href="?path=affiliates">Affiliate Übersicht</a>'
.
$ASARow
.
'</div>'
;
mfG
Beiträge: 0
Wohnort: keine Angabe
HTH-Coins: 76.827
24.07.2014 - 15:26 Uhr
Beitrag:
#3
Super geht 1 a Danke.
Seiten (1):
1
Ähnliche Themen
Support
»
KitNospam V2 und Affiliates Addon ?
(15.08.08, 04:37)
Support
»
Navigation
(06.09.07, 00:24)
Support
»
navigation right
(18.11.07, 23:04)
Support
»
navigation right
(22.11.07, 17:44)
Support
»
navigation leiste
(10.03.09, 14:29)