|
|
Latest News |
Latest Threads |
|
|
54.691 Posts & 4.945 Themen in 78 Foren |
|
|
|
|
Forensuche |
|
Suchbegriff |
Benutzerauswahl |
Ergebnisse anzeigen |
|
|
Artikel sortieren 25 Beiträge in diesem Thema |
|
|
|
|
|
03.04.2016 - 12:54 Uhr |
|
|
|
Perfekt
Wenn du auf der ersten Seite alles nochmal bearbeiten könntest, damit ich es sauber abspeichern kann, wäre es für mich auch erledigt
Vielen vielen Dank wieder, für deine super Hilfe.
|
|
|
|
|
|
|
|
|
|
03.04.2016 - 13:05 Uhr |
|
|
|
Nichts da - das pack ich lieber in einen neuen Post und setze einen Link beim anderen Post zu diesen
Hier klicken zum aufklappen- pkinc/lang/de/default.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext 'article' => 'Artikel',
'articles' => 'Artikel', | |
Und mache daraus z.B. das:
| PHP-Quelltext # ContentLinkToTour | Start
#'article' => 'Artikel',
#'articles' => 'Artikel',
'article' => 'Album',
'articles' => 'Albums',
# ContentLinkToTour | End | |
- pkinc/admin/contentcompose.php
- Öffne o.g. Datei und suche das:
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 | | PHP-Quelltext # ContentLinkToTour | Start
$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 | | |
Und mache daraus das:
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)===1 || 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 | |
- Such weiter:
| PHP-Quelltext # ContentLinkToTour | Start
If (Intval($type)===3 && Is_Numeric($content_altdat) && Intval($content_altdat) > 0) | |
Und mache daraus das:
| PHP-Quelltext # ContentLinkToTour | Start
#If (Intval($type)===3 && Is_Numeric($content_altdat) && Intval($content_altdat) > 0)
If ((Intval($type)===1 || Intval($type)===3) && Is_Numeric($content_altdat) && Intval($content_altdat) > 0) | |
- pkinc/admintpl/content/compose_step3_1.htm
- Öffne o.g. Datei und ersetze den Inhalt mit folgendem:
| Quellcode <tr>
<td class="left">Album erscheint am<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 # ContentLinkToTour | Start
$orderhash[]='tour';
$orderhash[]='toure';
# ContentLinkToTour | End | |
Und mache daraus das:
| PHP-Quelltext # ContentLinkToTour | Start
$orderhash[]='tour';
$orderhash[]='toure';
$orderhash[]='album';
$orderhash[]='albume';
# ContentLinkToTour | End | |
- Suche weiter:
| 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 | | |
Und mache daraus das:
| 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";
elseif($order=="album" && Intval($type)===1)
$sqlorder="ORDER by CAST(".pkSQLTAB_CONTENT.".content_altdat AS UNSIGNED) DESC";
elseif($order=="albume" && Intval($type)===1)
$sqlorder="ORDER by CAST(".pkSQLTAB_CONTENT.".content_altdat AS UNSIGNED) ASC";
elseif(Intval($type)===1)
$sqlorder="ORDER by CAST(".pkSQLTAB_CONTENT.".content_altdat AS UNSIGNED) DESC";
# ContentLinkToTour | End | |
- Suche weiter:
| PHP-Quelltext if($type==1)
{
if($row=='odd' || $row=='even2')
{
eval("\$content_articles.= \"".pkTpl("content/overview_article_linkbox_left")."\";");
}
else
{
eval("\$content_articles.= \"".pkTpl("content/overview_article_linkbox_right")."\";");
}
} | |
Und mache daraus das:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | | PHP-Quelltext if($type==1)
{
# ContentLinkToTour | Start
$AlbumDate=Trim($contentinfo['content_altdat']);
$AlbumDate=pkTimeFormat($AlbumDate, 'date');
# ContentLinkToTour | End
if($row=='odd' || $row=='even2')
{
eval("\$content_articles.= \"".pkTpl("content/overview_article_linkbox_left")."\";");
}
else
{
eval("\$content_articles.= \"".pkTpl("content/overview_article_linkbox_right")."\";");
}
} | |
- Suche weiter:
| 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 | |
Und mache daraus das:
| PHP-Quelltext # ContentLinkToTour | Start
#eval("\$site_body.= \"".pkTpl("content/overview_control")."\";");
If (Intval($type)===3)
{
eval("\$site_body.= \"".pkTpl("content/overview_control_links")."\";");
}
ElseIf (Intval($type)===1)
{
eval("\$site_body.= \"".pkTpl("content/overview_control_article")."\";");
}
Else
{
eval("\$site_body.= \"".pkTpl("content/overview_control")."\";");
}
# ContentLinkToTour | End | |
- pkinc/publictpl/content/overview_control_article.htm
- Erstelle o.g. Datei (vorhanden kopieren und umbenennen) 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> Albumdatum</b></font></td>
<td><font class="small"> <a href="include.php?path=contentarchive&type=$type&catid=$catid&letter=$letter&entries=$entries&searchtext=$searchtext&order=album">Neueste</a> / <a href="include.php?path=contentarchive&type=$type&catid=$catid&letter=$letter&entries=$entries&searchtext=$searchtext&order=albume">Ä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="Album suchen" onblur="if (value =='') {value = 'Album suchen'}" onfocus="if (value == 'Album 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> | | |
//edit
Sortierung im Normalfall war noch falsch (Datei: pkinc/public/contentarchive.php, Punkt 2)
|
|
|
|
|
|
|
|
|
|
03.04.2016 - 14:17 Uhr |
|
|
|
:D
Besten Dank, dir dann noch einen schönen Sonntag
|
|
|
|
|
|
|
|
|
|
06.04.2016 - 10:52 Uhr |
|
|
|
|
|
|
|
|
|
06.04.2016 - 19:49 Uhr |
|
|
|
Ja nee, schon wieder. Ist halt blöd wenn Copy und Paste nicht richtig gemacht wird ^^""
- pkinc/public/contentarchive.php
- Öffne o.g. Datei und suche das:
| PHP-Quelltext elseif(Intval($type)===3)
$sqlorder="ORDER by CAST(".pkSQLTAB_CONTENT.".content_altdat AS UNSIGNED) ASC"; | |
Und mache daraus das:
| PHP-Quelltext elseif(Intval($type)===3)
$sqlorder="ORDER by CAST(".pkSQLTAB_CONTENT.".content_altdat AS UNSIGNED) DESC"; | |
Hab den Edit auch in den anderen Post wo alles drin steht editiert.
|
|
|
|
|
|
|
|
|
|
07.04.2016 - 08:16 Uhr |
|
|
|
Super, hat geklappt, danke
|
|
|
|
|
|
|
|
|
|
27.04.2016 - 10:02 Uhr |
|
|
|
Mir ist heute aufgefallen, das sich einige Alben um einen Tag nach hinten verschoben haben vom Datum. Ich weiß das ich im ACP die Sommer/Winterzeit ändern musste, aber wieder stellt sich das Datum unter Artikel von 29.05.2016 auf 28.05.2016? Also ich meine das Zusatzdatum, welches ich eingeben kann, zum sortieren.
Besten Gruß
|
|
|
|
|
|
|
|
|
|
27.04.2016 - 21:26 Uhr |
|
|
|
Hmm .. Eigentlich dürfte sich doch gar nichts ändern Ich wüsste jetzt auch nicht wo ich da nachgucken sollte bzw. wo da jetzt der Fehler liegt (also außer diesen Somme-/Winterzeit-Wechsel-Quark).
Im schlimmsten Fall müssen wir den Code nochmal so umarbeiten das der Zeitwert anders gespeichert wird
|
|
|
|
|
|
|
|
|
|
28.04.2016 - 08:07 Uhr |
|
|
|
Ich würde sagen, bevor du dir die ganze Mühe machst, beobachte ich das mal. Wenn das noch mal passiert, melde ich mich einfach. Hätte ja sein können, das irgendwo ein kleiner Fehler ist, der das auslöst.
|
|
|
|
|
|
|
|
Ähnliche Themen |
|
|
|
|
|
|
|
|