<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Schnipsel - Code Schnipsel (Snippets) zu Wordpress, PHP, HTML, CSS, jQuery &#187; Typo3</title>
	<atom:link href="http://schnipsel.davidhellmann.com/category/typo3/feed" rel="self" type="application/rss+xml" />
	<link>http://schnipsel.davidhellmann.com</link>
	<description>Code Schnipsel (Snippets) zu Wordpress, PHP, HTML, CSS, jQuery</description>
	<lastBuildDate>Tue, 08 Mar 2011 00:20:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Cache automatisch l&#246;schen</title>
		<link>http://schnipsel.davidhellmann.com/typo3/cache-automatisch-loeschen/58</link>
		<comments>http://schnipsel.davidhellmann.com/typo3/cache-automatisch-loeschen/58#comments</comments>
		<pubDate>Mon, 08 Jun 2009 21:04:55 +0000</pubDate>
		<dc:creator>Andi Keßler</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[löschen]]></category>
		<category><![CDATA[redakteure]]></category>
		<category><![CDATA[TSconfig]]></category>

		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=58</guid>
		<description><![CDATA[Es kommt immer wieder vor, dass man beim Bearbeiten eines Datensatzes aus einem SysOrdner den Cache einer bestimmten Detailseite oder der ganzen Seite l&#246;schen muss. Da man das einem Otto-Normal-Redakteur nicht zumuten kann, kann man ins TSconfig des entsprechenden SysOrdners folgenden Schnipsel einf&#252;gen 1 TCEMAIN.clearCacheCmd = all Das Teil sorgt daf&#252;r, dass ab sofort beim [...]]]></description>
			<content:encoded><![CDATA[<p>Es kommt immer wieder vor, dass man beim Bearbeiten eines Datensatzes aus einem SysOrdner den Cache einer bestimmten Detailseite oder der ganzen Seite l&#246;schen muss.</p><span id="more-58"></span>
<p>Da man das einem Otto-Normal-Redakteur nicht zumuten kann, kann man ins TSconfig des entsprechenden SysOrdners folgenden Schnipsel einf&#252;gen</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="ts" style="font-family:monospace;">TCEMAIN.clearCacheCmd = all</pre></td></tr></table></div>



<p>Das Teil sorgt daf&#252;r, dass ab sofort beim &#196;ndern, Anlegen oder L&#246;schen eines Datensatzes der gesamte Seitencache geleert wird.<br />Logischerweise will man das nicht immer und man m&#246;chte stattdessen die Seiten, deren Cache gel&#246;scht wird, beschr&#228;nken. Das geht mit folgendem Schnipsel</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="ts" style="font-family:monospace;">TCEMAIN.clearCacheCmd = 1,2,3</pre></td></tr></table></div>



<p>Die Zahlen bezeichnen die IDs der Seiten, deren Cache gel&#246;scht werden soll</p>]]></content:encoded>
			<wfw:commentRss>http://schnipsel.davidhellmann.com/typo3/cache-automatisch-loeschen/58/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Backend-Spalten umbenennen</title>
		<link>http://schnipsel.davidhellmann.com/typo3/backend-spalten-umbenennen/50</link>
		<comments>http://schnipsel.davidhellmann.com/typo3/backend-spalten-umbenennen/50#comments</comments>
		<pubDate>Fri, 22 May 2009 08:35:49 +0000</pubDate>
		<dc:creator>Andi Keßler</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[Backendanpassung]]></category>

		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=50</guid>
		<description><![CDATA[F&#252;r manche Webseiten kann es sinnvoll sein, die Bezeichnungen der Backend-Spalten umzubenennen. Das trifft allerdings nur dann zu, wenn man Templavoila nicht benutzt. Aus welchen Gr&#252;nden auch immer. Dazu in die Datei /typo3conf/extTables.php folgendes Schnipsel einf&#252;gen und die Bezeichnungen entsprechend &#228;ndern 1 2 3 4 5 6 7 $TCA&#91;&#34;tt_content&#34;&#93;&#91;&#34;columns&#34;&#93;&#91;&#34;colPos&#34;&#93;&#91;&#34;config&#34;&#93;&#91;&#34;items&#34;&#93; = array &#40; &#34;0&#34; =&#38;gt; array [...]]]></description>
			<content:encoded><![CDATA[<p>F&#252;r manche Webseiten kann es sinnvoll sein, die Bezeichnungen der Backend-Spalten umzubenennen. Das trifft allerdings nur dann zu, wenn man Templavoila nicht benutzt. Aus welchen Gr&#252;nden auch immer.</p>
<span id="more-50"></span>
<p>Dazu in die Datei <em>/typo3conf/extTables.php</em> folgendes Schnipsel einf&#252;gen und die Bezeichnungen entsprechend &#228;ndern</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$TCA</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;tt_content&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;columns&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;colPos&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;config&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;items&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span>
        <span style="color: #0000ff;">&quot;0&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Normal||Normal||||||||&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;0&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>    <span style="color: #666666; font-style: italic;">//get</span>
        <span style="color: #0000ff;">&quot;1&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Rechts 2||Rechts 2||||||||&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;1&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">//getLeft</span>
        <span style="color: #0000ff;">&quot;2&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Rechts 1||Rechts 1||||||||&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;2&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>        <span style="color: #666666; font-style: italic;">//getRight</span>
        <span style="color: #0000ff;">&quot;3&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Rechts 3 (Teilbaum)||Rechts 3 (Teilbaum)||||||||&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;3&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>                 <span style="color: #666666; font-style: italic;">//getBorder</span>
        <span style="color: #0000ff;">&quot;4&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Additional||Additional||||||||&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;4&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>         <span style="color: #666666; font-style: italic;">//getAdditional</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>




<p>Anschlie&#223;end den Konfigurationscache leeren. Falls sich nichts tut, dann in die Datei <em>/typo3conf/localconf.php</em> folgende Zeile einf&#252;gen:</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$typo_db_extTableDef_script</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'extTables.php'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>




<p>Die deutlich einfachere Variante &#252;ber das TSconfig-Modul, greift leider nicht in der Listenansicht, wenn man die Bezeichnung der Spalten anzeigen l&#228;sst.</p>]]></content:encoded>
			<wfw:commentRss>http://schnipsel.davidhellmann.com/typo3/backend-spalten-umbenennen/50/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backend-Felder mit einem Standardwert belegen</title>
		<link>http://schnipsel.davidhellmann.com/typo3/backend-felder-mit-einem-standardwert-belegen/49</link>
		<comments>http://schnipsel.davidhellmann.com/typo3/backend-felder-mit-einem-standardwert-belegen/49#comments</comments>
		<pubDate>Fri, 22 May 2009 08:22:09 +0000</pubDate>
		<dc:creator>Andi Keßler</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[Backendanpassung]]></category>
		<category><![CDATA[TSconfig]]></category>

		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=49</guid>
		<description><![CDATA[Beim Anpassen des TYPO3-Backends an eine bestimmte Webseite, kommt es h&#228;ufig vor, dass man bestimmte Felder mit einem Standardwert belegen m&#246;chte. Dazu dient folgendes Schnipsel, das in den TSconfig der Root-Seite oder in den User-TSconfig eingef&#252;gt wird. Damit kann man die Default-Werte f&#252;r jeden Benutzer oder Benutzergruppen separat setzen. 1 TCAdefaults.&#91;Name der Tabelle&#93;.&#91;Name des Feldes&#93; [...]]]></description>
			<content:encoded><![CDATA[<p>Beim Anpassen des TYPO3-Backends an eine bestimmte Webseite, kommt es h&#228;ufig vor, dass man bestimmte Felder mit einem Standardwert belegen m&#246;chte. Dazu dient folgendes Schnipsel, das in den TSconfig der Root-Seite oder in den User-TSconfig eingef&#252;gt wird. Damit kann man die Default-Werte f&#252;r jeden Benutzer oder Benutzergruppen separat setzen.</p>
<span id="more-49"></span>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">TCAdefaults<span style="color: #339933;">.</span><span style="color: #009900;">&#91;</span>Name der Tabelle<span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #009900;">&#91;</span>Name des Feldes<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>gewünschter Wert<span style="color: #009900;">&#93;</span></pre></td></tr></table></div>



<p>Es kann allerdings vorkommen, dass der Default-Wert nur greift, wenn der neue Datensatz &#252;ber den Seitenmodus angelegt wird (z.B. Filelinks). Hierf&#252;r habe ich noch keine L&#246;sung gefunden</p>]]></content:encoded>
			<wfw:commentRss>http://schnipsel.davidhellmann.com/typo3/backend-felder-mit-einem-standardwert-belegen/49/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standard Page-Deklaration</title>
		<link>http://schnipsel.davidhellmann.com/typo3/standard-page-deklaration/47</link>
		<comments>http://schnipsel.davidhellmann.com/typo3/standard-page-deklaration/47#comments</comments>
		<pubDate>Tue, 19 May 2009 19:30:48 +0000</pubDate>
		<dc:creator>Andi Keßler</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[Templavoila]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=47</guid>
		<description><![CDATA[Hier mal ein Vorschlag f&#252;r eine Standard-Page-Deklaration mit Templavoila. Ber&#252;cksichtigt werden zus&#228;tzliche Skripts und CSS-Files im Header-Bereich sowie die Keywords und Seitenbeschreibungen aus den Seiteneigenschaften. Die Seitenindizierung ist zu Gunsten eines schnelleren Seitenaufbaus abgeschaltet. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [...]]]></description>
			<content:encoded><![CDATA[<p>Hier mal ein Vorschlag f&#252;r eine Standard-Page-Deklaration mit Templavoila. Ber&#252;cksichtigt werden zus&#228;tzliche Skripts und CSS-Files im Header-Bereich sowie die Keywords und Seitenbeschreibungen aus den Seiteneigenschaften. Die Seitenindizierung ist zu Gunsten eines schnelleren Seitenaufbaus abgeschaltet.</p>
<span id="more-47"></span>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>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
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">page <span style="color: #339933;">=</span> PAGE
&nbsp;
page<span style="color: #339933;">.</span>10 <span style="color: #339933;">=</span> USER
page<span style="color: #339933;">.</span>10<span style="color: #339933;">.</span>userFunc <span style="color: #339933;">=</span> tx_templavoila_pi1<span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>main_page
&nbsp;
page <span style="color: #009900;">&#123;</span>
typeNum <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span>
shortcutIcon <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;relativer Pfad zum Shortcut-Icon&quot;</span>
config <span style="color: #009900;">&#123;</span>
  index_enable <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span>
  metaCharset <span style="color: #339933;">=</span> utf<span style="color: #339933;">-</span><span style="color: #cc66cc;">8</span>
  additionalHeaders <span style="color: #339933;">=</span> Content<span style="color: #339933;">-</span>Type<span style="color: #339933;">:</span>text<span style="color: #339933;">/</span>html<span style="color: #339933;">;</span>charset<span style="color: #339933;">=</span>utf<span style="color: #339933;">-</span><span style="color: #cc66cc;">8</span>
  htmlTag_setParams <span style="color: #339933;">=</span> xmlns<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.w3.org/1999/xhtml&quot;</span> xml<span style="color: #339933;">:</span>lang<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;de&quot;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
meta <span style="color: #009900;">&#123;</span>
  author <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;dein Name&quot;</span>
  language <span style="color: #339933;">=</span> de
&nbsp;
  keywords<span style="color: #339933;">.</span>field <span style="color: #339933;">=</span> keywords
  description<span style="color: #339933;">.</span>field <span style="color: #339933;">=</span> description
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
headerData<span style="color: #339933;">.</span>20 <span style="color: #339933;">=</span> TEXT
headerData<span style="color: #339933;">.</span>20 <span style="color: #009900;">&#123;</span>
  value <span style="color: #009900;">&#40;</span>
       <span style="color: #666666; font-style: italic;">// zusätzliche Header-Informationen</span>
      <span style="color: #009900;">&#41;</span>
     <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>


]]></content:encoded>
			<wfw:commentRss>http://schnipsel.davidhellmann.com/typo3/standard-page-deklaration/47/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamisch Bilder aus Seiteneigenschaften laden</title>
		<link>http://schnipsel.davidhellmann.com/typo3/dynamisch-bilder-aus-seiteneigenschaften-laden/46</link>
		<comments>http://schnipsel.davidhellmann.com/typo3/dynamisch-bilder-aus-seiteneigenschaften-laden/46#comments</comments>
		<pubDate>Tue, 19 May 2009 19:25:09 +0000</pubDate>
		<dc:creator>Andi Keßler</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[Bilder]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=46</guid>
		<description><![CDATA[Es kommt immer wieder vor, dass verschiedene Header-Grafiken ben&#246;tigt werden. Das Media-Feld in den Seiteneigenschaften bietet sich daf&#252;r geradezu an, da es auch von Redakteuren einfach gepflegt werden kann und die Bilder nicht hard-verlinkt werden m&#252;ssen. 1 2 3 4 5 6 7 8 9 10 lib.logo = IMAGE lib.logo.stdWrap.typolink.parameter = &#40;id der zu verlinkenden [...]]]></description>
			<content:encoded><![CDATA[<p>Es kommt immer wieder vor, dass verschiedene Header-Grafiken ben&#246;tigt werden. Das Media-Feld in den Seiteneigenschaften bietet sich daf&#252;r geradezu an, da es auch von Redakteuren einfach gepflegt werden kann und die Bilder nicht hard-verlinkt werden m&#252;ssen.</p>
<span id="more-46"></span>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">lib<span style="color: #339933;">.</span>logo <span style="color: #339933;">=</span> IMAGE
lib<span style="color: #339933;">.</span>logo<span style="color: #339933;">.</span>stdWrap<span style="color: #339933;">.</span>typolink<span style="color: #339933;">.</span>parameter <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>id der zu verlinkenden Seite<span style="color: #009900;">&#41;</span>
lib<span style="color: #339933;">.</span>logo <span style="color: #009900;">&#123;</span>
  <span style="color: #990000;">file</span> <span style="color: #009900;">&#123;</span>  
    import<span style="color: #339933;">.</span>data <span style="color: #339933;">=</span> levelmedia<span style="color: #339933;">:</span> <span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>slide  
    import <span style="color: #339933;">=</span> uploads<span style="color: #339933;">/</span>media<span style="color: #339933;">/</span>  
    import<span style="color: #339933;">.</span>listNum <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span> 
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>




<p>Dadurch, dass innerhalb von file keine Gr&#246;&#223;enangaben wie width und height gemacht werden, wird das Bild in der Originalgr&#246;&#223;e angezeigt.<br />
Das Snippet sorgt au&#223;erdem daf&#252;r, dass Bilder von den &#252;bergeordneten Seiten geladen werden, falls die aktuelle Seite kein eigenes Bild hinterlegt hat</p>]]></content:encoded>
			<wfw:commentRss>http://schnipsel.davidhellmann.com/typo3/dynamisch-bilder-aus-seiteneigenschaften-laden/46/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content-Elemente auf allen Seiten anzeigen</title>
		<link>http://schnipsel.davidhellmann.com/typo3/content-elemente-auf-allen-seiten-anzeigen/45</link>
		<comments>http://schnipsel.davidhellmann.com/typo3/content-elemente-auf-allen-seiten-anzeigen/45#comments</comments>
		<pubDate>Tue, 19 May 2009 19:15:40 +0000</pubDate>
		<dc:creator>Andi Keßler</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[Ständige Inhalte]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=45</guid>
		<description><![CDATA[Hier ein TypoScript-Baustein, um die Inhalte einer ganzen Seite in das Template einzuf&#252;gen. Kann verwendet werden, um bestimmte Inhalte auf jeder Seite anzuzeigen 1 2 3 4 5 6 7 lib.teaser = CONTENT lib.teaser &#123; table = tt_content select.orderBy = sorting select.pidInList = 306 // 306 ist die ID der entsprechenden Seite &#125;]]></description>
			<content:encoded><![CDATA[<p>Hier ein TypoScript-Baustein, um die Inhalte einer ganzen Seite in das Template einzuf&#252;gen. Kann verwendet werden, um bestimmte Inhalte auf jeder Seite anzuzeigen</p>
<span id="more-45"></span>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">lib<span style="color: #339933;">.</span>teaser <span style="color: #339933;">=</span> CONTENT
lib<span style="color: #339933;">.</span>teaser <span style="color: #009900;">&#123;</span>
  table <span style="color: #339933;">=</span> tt_content
  select<span style="color: #339933;">.</span>orderBy <span style="color: #339933;">=</span> sorting
  select<span style="color: #339933;">.</span>pidInList <span style="color: #339933;">=</span> <span style="color: #cc66cc;">306</span>
  <span style="color: #666666; font-style: italic;">// 306 ist die ID der entsprechenden Seite</span>
  <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>




]]></content:encoded>
			<wfw:commentRss>http://schnipsel.davidhellmann.com/typo3/content-elemente-auf-allen-seiten-anzeigen/45/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

