NAVIGATION
Derzeit gibt es keine Möglichkeit im der Artikellisten-Ansicht auch die CPs auszugeben. Diese Erweiterung für das Listing-Template ändert das.
Autor: Robert Auf Grundlage der Arbeit von K.Heermann (flip-flop)
Vorlage Artikellisting Template: –
Neues phpwcms (>=18112014)
{SHOW_CONTENT:CPA, {ARTICLEID} }
Altes phpwcms (<18112014)
[PHP] // Artikel in der DB suchen und CP-ID bereitstellen // Search for the article and make the CP-ID available $sql = "SELECT acontent_id, acontent_aid "; $sql .= "FROM ".DB_PREPEND."phpwcms_articlecontent "; $sql .= "WHERE acontent_visible=1 AND acontent_trash=0 "; $sql .= 'AND acontent_aid = ' . {ARTICLEID} . ' '; $sql .= "ORDER BY acontent_sorting"; $result = _dbQuery($sql); if(isset($result[0]['acontent_id'])) { // Any result available? // Create CP-IDs string for SHOW_CONTENT $cp_my_id_str = ''; foreach($result as $value) { $cp_my_id_str .= ','.$value['acontent_id']; } // Make the encountered CPs available echo showSelectedContent('CP'.$cp_my_id_str); } [/PHP]
Siehe auch:
RT: {SHOW_CONTENT:MODE,id,id,id}
2. {SHOW_CONTENT:CPA, art-id, art-id, art-id} Aufsteigende Ausgabe der CPs, jedoch sind die IDs die Artikel-IDs. 3. {SHOW_CONTENT:CPAD, art-id, art-id, art-id} Absteigende Auagabe der CPs. IDs sind Artikel-IDs. (Die Seitenausgabe verlangsamt sich etwas).