<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Kommentare zu: Alphabetische &#220;bersicht auf mehrere Listen verteilen</title>
	<atom:link href="http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/</link>
	<description>Vorstellung des CMS WordPress</description>
	<lastBuildDate>Wed, 25 Jan 2012 13:06:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Von: Alphabetische &#220;bersicht der Beitr&#228;ge oder Seiten ausgeben &#171; Blog Archiv &#171; WordPress</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-2947</link>
		<dc:creator>Alphabetische &#220;bersicht der Beitr&#228;ge oder Seiten ausgeben &#171; Blog Archiv &#171; WordPress</dc:creator>
		<pubDate>Thu, 02 Oct 2008 12:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-2947</guid>
		<description>[...] Aufteilung in mehrere Teillisten ist seit Version 0.2 [...]</description>
		<content:encoded><![CDATA[<p>[...] Aufteilung in mehrere Teillisten ist seit Version 0.2 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Matthias</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1338</link>
		<dc:creator>Matthias</dc:creator>
		<pubDate>Mon, 14 Apr 2008 19:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1338</guid>
		<description>Syntaxfehler? Liegt vielleicht an dem von Wordpress entstellten einfachen Anf&#252;hrungszeichen...

Hook? Ok, ich denk&#039; beim n&#228;chsten Update mal dr&#252;ber nach :-)</description>
		<content:encoded><![CDATA[<p>Syntaxfehler? Liegt vielleicht an dem von WordPress entstellten einfachen Anführungszeichen&#8230;</p>
<p>Hook? Ok, ich denk&#8217; beim nächsten Update mal drüber nach <img src='http://www.mr-entwicklung.de/cms/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Gerd</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1337</link>
		<dc:creator>Gerd</dc:creator>
		<pubDate>Mon, 14 Apr 2008 19:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1337</guid>
		<description>Aaah jaa, jetzt versteh ich, auf was du hinaus willst. Clevere Idee, wenn auch der Codeschnipsel oben einen Syntaxerror bringt. Allerdings hat mein Vorschlag mit dem Hook in Einzelseiten f&#252;r jeden Buchstaben den Vorteil, dass man auch mal eintragsschwache Buchstaben auf einer Seite zusammenfassen kann. Seite X-Z bspw.</description>
		<content:encoded><![CDATA[<p>Aaah jaa, jetzt versteh ich, auf was du hinaus willst. Clevere Idee, wenn auch der Codeschnipsel oben einen Syntaxerror bringt. Allerdings hat mein Vorschlag mit dem Hook in Einzelseiten für jeden Buchstaben den Vorteil, dass man auch mal eintragsschwache Buchstaben auf einer Seite zusammenfassen kann. Seite X-Z bspw.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Matthias</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1336</link>
		<dc:creator>Matthias</dc:creator>
		<pubDate>Mon, 14 Apr 2008 19:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1336</guid>
		<description>Nein, das ist ja gerade der Vorteil der beschriebenen Variante. Man kann auch die Links per Skript erzeugen. Die folgende Funktion gibt eine alphabetische Navigationsleiste aus (z.B. in der Plugin-Datei oder der functions.php des Theme definieren):

&lt;pre lang=&quot;php&quot;&gt;
function alpha_navi () {
  $startchr=48; // chr(48)=0
  $endchr=90; // chr(90)=Z
  echo &#039;&lt;ul class=&quot;abc-navi&quot;&gt;&#039;;
  for ( $j=$startchr;$j&lt;$endchr;$j++ ) {
    if ( preg_match(&#039;/^[a-z0-9]+$/iD&#039;, chr($j)) ) {
      echo &#039;&lt;li style=&quot;display: inline;&quot;&gt;&lt;a href=&quot;&#039;
        .substr($_SERVER[&#039;REQUEST_URI&#039;], 
        0,strpos($_SERVER[&#039;REQUEST_URI&#039;], &#039;?&#039;))
        .&#039;?start=&#039;.chr($j)
        .&#039;&amp;end=&#039;.chr($j).&#039;&quot;&gt;&#039;.chr($j).&#039;&lt;/a&gt;&lt;/li&gt;;&#039;.&quot;\n&quot;;
    }
  }
  echo &#039;&lt;/ul&gt;&#039;;
}
&lt;/pre&gt;

Sie muss vor dem Code oben einmal aufgerufen werden:

&lt;pre lang=&quot;php&quot;&gt;
if ( function_exists (&#039;alpha_navi&#039;) ) {
  alpha_navi();
}
$start=$_REQUEST[&#039;start&#039;];
...
&lt;/pre&gt;

So ungef&#228;hr dachte ich mir das :-)

&lt;img src=&quot;http://www.mr-entwicklung.de/cms/wordpress/wp-content/uploads/Glossar-Beispiel.png&quot; /&gt;</description>
		<content:encoded><![CDATA[<p>Nein, das ist ja gerade der Vorteil der beschriebenen Variante. Man kann auch die Links per Skript erzeugen. Die folgende Funktion gibt eine alphabetische Navigationsleiste aus (z.B. in der Plugin-Datei oder der functions.php des Theme definieren):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> alpha_navi <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$startchr</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">48</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// chr(48)=0</span>
  <span style="color: #000088;">$endchr</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">90</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// chr(90)=Z</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;ul class=&quot;abc-navi&quot;&gt;'</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$j</span><span style="color: #339933;">=</span><span style="color: #000088;">$startchr</span><span style="color: #339933;">;</span><span style="color: #000088;">$j</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$endchr</span><span style="color: #339933;">;</span><span style="color: #000088;">$j</span><span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">preg_match</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/^[a-z0-9]+$/iD'</span><span style="color: #339933;">,</span> <span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li style=&quot;display: inline;&quot;&gt;&lt;a href=&quot;'</span>
        <span style="color: #339933;">.</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> 
        <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'?'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
        <span style="color: #339933;">.</span><span style="color: #0000ff;">'?start='</span><span style="color: #339933;">.</span><span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#41;</span>
        <span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;end='</span><span style="color: #339933;">.</span><span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt;&lt;/li&gt;;'</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/ul&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Sie muss vor dem Code oben einmal aufgerufen werden:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'alpha_navi'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  alpha_navi<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000088;">$start</span><span style="color: #339933;">=</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'start'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">...</span></pre></div></div>

<p>So ungefähr dachte ich mir das <img src='http://www.mr-entwicklung.de/cms/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><img src="http://www.mr-entwicklung.de/cms/wordpress/wp-content/uploads/Glossar-Beispiel.png" /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Gerd</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1335</link>
		<dc:creator>Gerd</dc:creator>
		<pubDate>Mon, 14 Apr 2008 17:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1335</guid>
		<description>Ja, ok. Aber wie rufe ich die Seiten dann auf? Ich kann ja keine Seiten mit querystring anlegen. Man m&#252;sste dann die GET-Variabeln jedesmal per Hand in die Adresszeile tippern. Oder?</description>
		<content:encoded><![CDATA[<p>Ja, ok. Aber wie rufe ich die Seiten dann auf? Ich kann ja keine Seiten mit querystring anlegen. Man müsste dann die GET-Variabeln jedesmal per Hand in die Adresszeile tippern. Oder?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Matthias</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1334</link>
		<dc:creator>Matthias</dc:creator>
		<pubDate>Mon, 14 Apr 2008 17:05:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1334</guid>
		<description>Nein, eine Seite &#039;lexikon&#039; anlegen, die im Seitentemplate so etwas wie den folgenden Code enth&#228;lt:

&lt;pre lang=&quot;php&quot;&gt;
$start=$_REQUEST[&#039;start&#039;];
$end=$_REQUEST[&#039;end&#039;];
if ( is_string($start) AND is_string($end) AND function_exists (&#039;alpha_postlist&#039;)) { 
  alpha_postlist (0,false,$start[0],$end[0]);
&lt;/pre&gt;

Aufruf mit &lt;code class=&quot;inline&quot;&gt;lexikon/?start=A&amp;end=A&lt;/code&gt;. Vielleicht reicht die Validierung so schon aus.

Sicherheitshalber kann man noch 

&lt;pre lang=&quot;php&quot;&gt;
if (preg_match(&quot;([A-Z0-9]+)&quot;,$start)) {...
&lt;/pre&gt;

einbauen. Gerade getestet, scheint zu funktionieren :-)</description>
		<content:encoded><![CDATA[<p>Nein, eine Seite &#8216;lexikon&#8217; anlegen, die im Seitentemplate so etwas wie den folgenden Code enthält:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$start</span><span style="color: #339933;">=</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'start'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$end</span><span style="color: #339933;">=</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'end'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">is_string</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span> AND <span style="color: #990000;">is_string</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#41;</span> AND <span style="color: #990000;">function_exists</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'alpha_postlist'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
  alpha_postlist <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Aufruf mit <code class="inline">lexikon/?start=A&#038;end=A</code>. Vielleicht reicht die Validierung so schon aus.</p>
<p>Sicherheitshalber kann man noch</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">preg_match</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;([A-Z0-9]+)&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #339933;">...</span></pre></div></div>

<p>einbauen. Gerade getestet, scheint zu funktionieren <img src='http://www.mr-entwicklung.de/cms/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Gerd</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1332</link>
		<dc:creator>Gerd</dc:creator>
		<pubDate>Mon, 14 Apr 2008 16:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1332</guid>
		<description>&quot;Abgesehen davon m&#252;sste die ja streng genommen erst validieren,&quot; Die GET-Variablen meine ich, die m&#252;sste man erst pr&#252;fen, damit kein Unfug eingeschleust werden kann..</description>
		<content:encoded><![CDATA[<p>&#8220;Abgesehen davon müsste die ja streng genommen erst validieren,&#8221; Die GET-Variablen meine ich, die müsste man erst prüfen, damit kein Unfug eingeschleust werden kann..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Gerd</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1331</link>
		<dc:creator>Gerd</dc:creator>
		<pubDate>Mon, 14 Apr 2008 16:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1331</guid>
		<description>Und wie stellt man das an? Wenn ich im Backend eine Seite anlege mit dem Titel &quot;A&quot;, dann ist die URL http://www.example.org/lexikon/a/ Wie gebe ich der dann GET-Parameter mit? Abgesehen davon m&#252;sste die ja streng genommen erst validieren, bevor sie vom Script verwurstet werden. Oder &#252;berseh ich was?</description>
		<content:encoded><![CDATA[<p>Und wie stellt man das an? Wenn ich im Backend eine Seite anlege mit dem Titel &#8220;A&#8221;, dann ist die URL <a href="http://www.example.org/lexikon/a/" rel="nofollow"></a><a href='http://www.example.org/lexikon/a/'>http://www.example.org/lexikon/a/</a> Wie gebe ich der dann GET-Parameter mit? Abgesehen davon müsste die ja streng genommen erst validieren, bevor sie vom Script verwurstet werden. Oder überseh ich was?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Matthias</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1329</link>
		<dc:creator>Matthias</dc:creator>
		<pubDate>Mon, 14 Apr 2008 15:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1329</guid>
		<description>M&#246;glich w&#228;re das. Ich w&#252;rde das auf den ersten Blick aber &#252;ber in der URL &#252;bergebene Parameter l&#246;sen: 

&lt;pre lang=&quot;php&quot;&gt;/glossar?start=A&amp;end=A&lt;/pre&gt;

Aufruf dann mit:

&lt;pre lang=&quot;php&quot;&gt;
alpha_postlist (12,true,$start,$end)
&lt;/pre&gt;

Dann braucht man nicht 26 Seiten anlegen :-)</description>
		<content:encoded><![CDATA[<p>Möglich wäre das. Ich würde das auf den ersten Blick aber über in der URL übergebene Parameter lösen:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">/</span>glossar?start<span style="color: #339933;">=</span>A<span style="color: #339933;">&amp;</span>end<span style="color: #339933;">=</span>A</pre></div></div>

<p>Aufruf dann mit:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">alpha_postlist <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">12</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #339933;">,</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>Dann braucht man nicht 26 Seiten anlegen <img src='http://www.mr-entwicklung.de/cms/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Gerd</title>
		<link>http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/comment-page-1/#comment-1326</link>
		<dc:creator>Gerd</dc:creator>
		<pubDate>Mon, 14 Apr 2008 12:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mr-entwicklung.de/cms/wordpress/plugins/alphabetische-uebersicht-auf-mehrere-listen-verteilen/#comment-1326</guid>
		<description>Praktisch w&#228;re es, wenn man die zu &#252;bergebenden Parameter direkt in den Seitentext schreiben k&#246;nnte, statt die PHP-Sequenz hardcodiert ins Template schreiben zu m&#252;ssen. Ich w&#252;rde gerne pro Buchstabe eine eigene Seite haben (f&#252;r ein Lexikon). Jetzt muss ich f&#252;r jeden Buchstaben ein eigenes Template anlegen. K&#246;nnte man die Parameter direkt aus den Seitenformularen &#252;bergeben, w&#252;rde ein einziges gen&#252;gen.

Man k&#246;nnte dann z.B. einfach &quot;[[listalpha: 12, true, A, B]]&quot; in das Formularfeld schreiben. M&#252;sste eigentlich gehen, oder?

Vielleicht hats du ja beim n&#228;chsten Update Lust und Zeit f&#252;r sowas. ;)</description>
		<content:encoded><![CDATA[<p>Praktisch wäre es, wenn man die zu übergebenden Parameter direkt in den Seitentext schreiben könnte, statt die PHP-Sequenz hardcodiert ins Template schreiben zu müssen. Ich würde gerne pro Buchstabe eine eigene Seite haben (für ein Lexikon). Jetzt muss ich für jeden Buchstaben ein eigenes Template anlegen. Könnte man die Parameter direkt aus den Seitenformularen übergeben, würde ein einziges genügen.</p>
<p>Man könnte dann z.B. einfach &#8220;[[listalpha: 12, true, A, B]]&#8221; in das Formularfeld schreiben. Müsste eigentlich gehen, oder?</p>
<p>Vielleicht hats du ja beim nächsten Update Lust und Zeit für sowas. <img src='http://www.mr-entwicklung.de/cms/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

