|
|
Latest News |
Latest Threads |
|
|
54.691 Posts & 4.945 Themen in 78 Foren |
|
|
|
|
Forensuche |
|
Suchbegriff |
Benutzerauswahl |
Ergebnisse anzeigen |
|
|
Kategorie "Link" bearbeiten (einige erweiterungen) 49 Beiträge in diesem Thema |
|
|
|
|
|
11.10.2014 - 13:27 Uhr |
|
|
|
Du bist aber auch nie zufrieden, ne?;p
- pkinc/publictpl/content/overview_links_linkbox.htm
- Öffne o.g. Datei und ersetze es mit dem:
| Quellcode <td class="$row" colspan="2"><font class="big"><a href="$link"><b>$contentinfo[content_title]</b></a></font></td>
</tr>
<tr>
<td class="$row" colspan="2" valign="top">
<font class="big">$contentinfo[content_title]</font><br />
<span class="small">$content_time von $autorinfo</span><br />
$CQeditLnk
<br />
$content_catimage
<br />
<font class="contenttext">$content_headline</font>
</td>
</tr> | |
|
|
|
|
|
|
|
|
|
|
11.10.2014 - 13:42 Uhr |
|
|
|
Doch, wenn das geschafft ist
Leider immer noch neben dem Bild
|
|
|
|
|
|
|
|
|
|
11.10.2014 - 13:50 Uhr |
|
|
|
Und so?
- pkinc/publictpl/content/overview_links_linkbox.htm
- Öffne o.g. Datei und ersetze es mit dem:
| Quellcode <td class="$row" colspan="2"><font class="big"><a href="$link"><b>$contentinfo[content_title]</b></a></font></td>
</tr>
<tr>
<td class="$row" colspan="2" valign="top">
<font class="big">$contentinfo[content_title]</font><br />
<span class="small">$content_time von $autorinfo</span><br />
$CQeditLnk
<br />
$content_catimage
<br />
<div class="contenttext">$content_headline</div>
</td>
</tr> | |
|
|
|
|
|
|
|
|
|
|
11.10.2014 - 13:55 Uhr |
|
|
|
|
|
|
|
|
|
11.10.2014 - 14:04 Uhr |
|
|
|
Okay, hab den Übeltäter grad gesehen. Sollte so gehen.
- pkinc/publictpl/content/overview_links_linkbox.htm
- Öffne o.g. Datei und ersetze es mit dem:
| Quellcode <td class="$row" colspan="2"><font class="big"><a href="$link"><b>$contentinfo[content_title]</b></a></font></td>
</tr>
<tr>
<td class="$row" colspan="2" valign="top">
<font class="big">$contentinfo[content_title]</font><br />
<span class="small">$content_time von $autorinfo</span><br />
$CQeditLnk
<br />
$content_catimage
<br / style="clear: left;">
<font class="contenttext">$content_headline</font>
</td>
</tr> | |
|
|
|
|
|
|
|
|
|
|
11.10.2014 - 14:09 Uhr |
|
|
|
Sehr sehr cool!!! Muss nur noch ein absatz rein, damit einwenig luft zum nächsten ist. Dann haben wir es endgültig geschafft
Ich danke dir wirklich sehr, dass du seit gestern die Ruhe hast, mir zu helfen, Danke!!!
|
|
|
|
|
|
|
|
|
|
11.10.2014 - 14:43 Uhr |
|
|
|
Du, ich hab dir leider einen fehlerhaften Code gegeben .. Und zwar fehlt bei den u.g. Template in der ersten Zeile noch was Das hab ich natürlich die ganzen letzten Posts nicht bemerkt und entsprechend immer fehlerhaft wiedergegeben
- pkinc/publictpl/content/overview_links_linkbox.htm
- Öffne o.g. Datei und suche das:
| Quellcode <td class="$row" colspan="2"><font class="big"><a href="$link"><b>$contentinfo[content_title]</b></a></font></td>
</tr> | |
Und mache daraus das:
| Quellcode <tr>
<td class="$row" colspan="2"><font class="big"><a href="$link"><b>$contentinfo[content_title]</b></a></font></td>
</tr> | |
|
|
|
|
|
|
|
|
|
|
11.10.2014 - 14:44 Uhr |
|
|
|
Hier nochmal alle Änderungen in der Endphase:
Hier klicken zum aufklappen- pkinc/admin/contentcompose.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext $cont_time = pkMkTime($ENV->_post_id('cont_time_h'),$ENV->_post_id('cont_time_mm'),0,$ENV->_post_id('cont_time_m'),$ENV->_post_id('cont_time_d'),$ENV->_post_id('cont_time_y'));
$cont_expire = pkMkTime($ENV->_post_id('cont_expire_h'),$ENV->_post_id('cont_expire_mm'),0,$ENV->_post_id('cont_expire_m'),$ENV->_post_id('cont_expire_d'),$ENV->_post_id('cont_expire_y')); | | |
Und füge darunter das ein:
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 | | PHP-Quelltext # ContentLinkToTour | Start
If (Intval($cont_type)===3)
{
$cont_altdat =NULL;
$cont_time_day
=
IsSet ($_POST['cont_time_day'])
&& Intval($_POST['cont_time_day']) > 0
&& Intval($_POST['cont_time_day']) < 32
? Intval($_POST['cont_time_day'])
: NULL
;
$cont_time_month
=
IsSet ($_POST['cont_time_month'])
&& Intval($_POST['cont_time_month']) > 0
&& Intval($_POST['cont_time_month']) < 13
? Intval($_POST['cont_time_month'])
: NULL
;
$cont_time_year
=
IsSet ($_POST['cont_time_year'])
&& Intval($_POST['cont_time_year']) > 0
? Intval($_POST['cont_time_year'])
: NULL
;
$cont_altdat
=
$cont_time_day > 0
&& $cont_time_month > 0
&& $cont_time_year > 0
? pkMkTime(0, 0, 0, $cont_time_month, $cont_time_day, $cont_time_year)
: NULL
;
}
# ContentLinkToTour | End | |
- Suche weiter
| PHP-Quelltext $content_time_d=date("d",$time);
$content_time_m=date("m",$time);
$content_time_y=date("Y",$time);
$content_time_h=date("H",$time);
$content_time_mm=date("i",$time); | |
Und füge darunter das ein:
| PHP-Quelltext # ContentLinkToTour | Start
$cont_time_day =NULL;
$cont_time_month=NULL;
$cont_time_year =NULL;
# ContentLinkToTour | End | |
- Suche weiter
| PHP-Quelltext $cont_autor=pkEntities($contentinfo['content_autor']);
$cont_title=pkEntities($contentinfo['content_title']);
$content_text=pkEntities($contentinfo['content_text']);
$content_altdat=pkEntities($contentinfo['content_altdat']); | |
Und füge darunter das ein:
| PHP-Quelltext # ContentLinkToTour | Start
If (Intval($type)===3 && Is_Numeric($content_altdat) && Intval($content_altdat) > 0)
{
$content_altdat =Intval($content_altdat);
$cont_time_day =Date('d', $content_altdat);
$cont_time_month=Date('m', $content_altdat);
$cont_time_year =Date('Y', $content_altdat);
}
# ContentLinkToTour | End | |
- pkinc/admintpl/content/compose_step3_3.htm
- Öffne o.g. Datei und ersetze den Inhalt mit folgendem:
| Quellcode <tr>
<td class="left">Tourbeginn<br /><span class="small">Angaben in DD.MM.JJJJ</span></td>
<td class="right">
<input type="text" name="cont_time_day" size="5" value="$cont_time_day" />
<input type="text" name="cont_time_month" size="5" value="$cont_time_month" />
<input type="text" name="cont_time_year" size="10" value="$cont_time_year" />
</td>
</tr> | |
- pkinc/public/contentarchive.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext $orderhash=array('rate','rated','title','titled','dated'); | |
Und füge darunter das ein:
| PHP-Quelltext # ContentLinkToTour | Start
$orderhash[]='tour';
$orderhash[]='toure';
# ContentLinkToTour | End | |
- Suche weiter
| PHP-Quelltext elseif($order=="title")
$sqlorder="ORDER by ".pkSQLTAB_CONTENT.".content_title ASC";
elseif($order=="titled")
$sqlorder="ORDER by ".pkSQLTAB_CONTENT.".content_title DESC"; | |
Und füge darunter das ein:
| PHP-Quelltext # ContentLinkToTour | Start
elseif($order=="tour" && Intval($type)===3)
$sqlorder="ORDER by CAST(".pkSQLTAB_CONTENT.".content_altdat AS UNSIGNED) DESC";
elseif($order=="toure" && Intval($type)===3)
$sqlorder="ORDER by CAST(".pkSQLTAB_CONTENT.".content_altdat AS UNSIGNED) ASC";
elseif(Intval($type)===3)
$sqlorder="ORDER by CAST(".pkSQLTAB_CONTENT.".content_altdat AS UNSIGNED) DESC";
# ContentLinkToTour | End | |
- Suche weiter
| PHP-Quelltext $content_headline = $BBCODE->parse($contentinfo['content_header'].' '.$contentinfo['content_text'],$contentinfo['content_html'],$contentinfo['content_ubb'],$contentinfo['content_smilies'],1);
$title = $contentinfo['content_title'];#was already forated above
$CMS->site_title_set($title,true); | |
Und füge darunter das ein:
| PHP-Quelltext # ContentLinkToTour | Start
$content_catimage=NULL;
# ContentLinkToTour | End | |
- Suche weiter
| PHP-Quelltext eval("\$site_body.= \"".pkTpl("content/overview_control")."\";"); | |
Und ersetze diese Stelle mit dem:
| PHP-Quelltext # ContentLinkToTour | Start
#eval("\$site_body.= \"".pkTpl("content/overview_control")."\";");
If (Intval($type)===3)
{
eval("\$site_body.= \"".pkTpl("content/overview_control_links")."\";");
}
Else
{
eval("\$site_body.= \"".pkTpl("content/overview_control")."\";");
}
# ContentLinkToTour | End | |
- pkinc/publictpl/content/overview_control_links.htm
- Erstelle o.g. Datei und füge folgenden Code ein:
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 | | Quellcode <table class="contentbody" cellspacing="1" cellpadding="4" width="100%">
<tr>
<td class="heads" align="left" colspan="3">
<table border="0" cellspacing="0" cellpadding="1" width="100%">
<tr>
<td align="left"><font class="heads">$submit_link</font></td>
<td align="right" nowrap="nowrap"><font class="headssmall">$content_side</font></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="left" align="left" valign="top" rowspan="2" width="33%">
<font class="small"><b>Titelauswahl:</b><br />
$content_control_letter</font></td>
<td class="left" align="left" valign="top" rowspan="2" width="34%">
<font class="small"><b>Sortierung:</b></font><br />
<table border="0" cellspacing="1" cellpadding="0">
<tr>
<td><font class="small"><b> Titel</b></font></td>
<td><font class="small"> <a href="include.php?path=contentarchive&type=$type&catid=$catid&letter=$letter&entries=$entries&searchtext=$searchtext&order=title">ABC</a> / <a href="include.php?path=contentarchive&type=$type&catid=$catid&letter=$letter&entries=$entries&searchtext=$searchtext&order=titled">ZXY</a></font></td>
</tr>
<tr>
<td><font class="small"><b> Tourdatum</b></font></td>
<td><font class="small"> <a href="include.php?path=contentarchive&type=$type&catid=$catid&letter=$letter&entries=$entries&searchtext=$searchtext&order=tour">Neueste</a> / <a href="include.php?path=contentarchive&type=$type&catid=$catid&letter=$letter&entries=$entries&searchtext=$searchtext&order=toure">Älteste</a></font></td>
</tr>
</table>
</td>
<td class="right" align="right" valign="top" width="33%" nowrap="nowrap">
<form method="post" action="include.php?path=search&mode=result">
<input type="hidden" name="search_type[0]" value="$type" />
<input type="text" name="search_text" class="small" size="20" value="$content_type suchen" onblur="if (value =='') {value = '$content_type suchen'}" onfocus="if (value == '$content_type suchen') {value =''}" />
<input type="submit" name="action" value="$LANG[bl_go]" class="small" />
<input type="hidden" name="action" value="$LANG[bl_go]" />
<input type="hidden" name="search" value="$LANG[bl_go]" class="small" />
<br />
<font class="small"><a class="small" href="include.php?path=search">Erweiterte Suche</a></font>
</form>
</td>
</tr>
<tr>
<td class="right" align="right">
<form method="post" action="include.php?path=contentarchive&type=$type&letter=$letter&entries=$entries&searchtext=$searchtext&order=$order">
<table border="0" cellspacing="0" cellpadding="1" width="100%">
<tr>
<td align="right" width="100%">
<select name="catid" size="1" class="small">
<option value="-1">alle Kategorien</option>
$overview_cats
</select></td>
<td><input type="submit" name="action" value="$LANG[bl_go]" class="small" /></td>
</tr>
<tr>
<td align="right">$control_themes</td>
<td> </td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img border="0" height="5" width="1" alt="" src="images/blank.gif" /></td>
</tr>
</table> | | |
- Zusatz:
Begriff Verweis zu Tourdates, 2 mögliche Wege:
- pkinc/publictpl/content/overview_submitlink.htm
pkinc/publictpl/content/overview_page3.htm
pkinc/publictpl/content/overview_control_links.htm
- Öffne o.g. Dateien und suche in allen das:
| Quellcode $content_type | |
Und mache daraus z.B. das:
| Quellcode Tourdates | |
Oder wie du nennen magst ;o
Oder du machst das direkt in der Lang-Datei:
- pkinc/lang/de/default.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext 'link' => 'Verweis',
'links' => 'Verweise', | |
Und machst daraus z.B. das:
| PHP-Quelltext 'link' => 'Tourdate',
'links' => 'Tourdates', | |
- pkinc/publictpl/content/overview_links_linkbox.htm
- Öffne o.g. Datei und ersetze es mit dem:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | | Quellcode <tr>
<td class="$row" colspan="2"><font class="big"><a href="$link"><b>$contentinfo[content_title]</b></a></font></td>
</tr>
<tr>
<td class="$row" colspan="2" valign="top">
<font class="big">$contentinfo[content_title]</font><br />
<span class="small">$content_time von $autorinfo</span><br />
$CQeditLnk
<br />
$content_catimage
<br / style="clear: left;">
<br />
<font class="contenttext">$content_headline</font>
<br />
<br />
</td>
</tr> | |
//edit
Sortierung im Normalfall war noch falsch (Datei: pkinc/public/contentarchive.php, Punkt 2)
//edit-2
Fehler in pkinc/admin/contentcompose.php gefixt.
|
Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von k!r!ka - 13.10.2014 - 19:45 Uhr |
|
|
|
|
|
|
|
|
|
|
11.10.2014 - 15:00 Uhr |
|
|
|
Danke, habe ich noch bearbeitet. Auch danke, das du nochmal alles zusammengestellt hast, gleich abgespeichert! Dann genieß mal dein restliches Wochenende
|
|
|
|
|
|
|
|
|
|
16.12.2014 - 10:45 Uhr |
|
|
|
Hey zusammen,
erst mal Top Arbeit, dass Addon läuft immer noch ohne Probleme. Nun sind mir zwei Sachen noch eingefallen, die man vielleicht noch ergänzen kann.
1.
Da wo der Strich ist, sollte stehen, wann die Tour startet. Also automatisch, wenn ich hier das Datum eintrage.
(bsp. Tourstart: 01.01.2015)
2.
Außerdem würde ich gerne das auch geändert haben. Statt "Link erstellen" in "Tourdates verfassen".
Hoffe kannst mir dabei noch mal helfen
|
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von DHH - 16.12.2014 - 13:52 Uhr |
|
|
|
|
|
|
|
|
|
|
16.12.2014 - 20:35 Uhr |
|
|
|
- pkinc/public/contentarchive.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext $link = pkLink('contentarchive','','type=3&contentid='.$contentinfo['content_id']);
$link_go = pkLink('link','','contentid='.$contentinfo['content_id'].'&link=go'); | |
Und füge darunter das ein:
| PHP-Quelltext # ContentLinkToTour | Start
$TourDate=Trim($contentinfo['content_altdat']);
$TourDate=pkTimeFormat($TourDate, 'date');
# ContentLinkToTour | End | |
Nun kannst du im u.g. Template an beliebiger Stelle die Variable $TourDate einsetzen. Ausgabe ist in der Form TT.MM.JJJJ.
- pkinc/publictpl/content/overview_links_linkbox.htm
- Öffne o.g. Datei und ändere den Inhalt z.B. wie folgt ab:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | | Quellcode <tr>
<td class="$row"><font class="big"><a href="$link"><b>$contentinfo[content_title]</b></a></font></td>
<td class="$row">$TourDate</td>
</tr>
<tr>
<td class="$row" colspan="2" valign="top">
<font class="big">$contentinfo[content_title]</font><br />
<span class="small">$content_time von $autorinfo</span><br />
$CQeditLnk
<br />
$content_catimage
<br / style="clear: left;">
<br />
<font class="contenttext">$content_headline</font>
<br />
<br />
</td>
</tr> | |
- pkinc/lang/de/content.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext 'content_compose_links' => 'Link erstellen', | |
Und mache daraus z.B. das:
| PHP-Quelltext # ContentLinkToTour | Start
#'content_compose_links' => 'Link erstellen',
'content_compose_links' => 'Tourdates verfassen',
# ContentLinkToTour | End | |
|
|
|
|
|
|
|
|
|
|
16.12.2014 - 23:47 Uhr |
|
|
|
Schon fast perfekt, nur das Wort Tourstart fehlt vor dem Datum
|
|
|
|
|
|
|
|
|
|
|
Ähnliche Themen |
|
|
|
|
|
|
|
|