<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://dx81.gendoas.de/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://dx81.gendoas.de/feed.php">
        <title>dx.new drupal:form</title>
        <description></description>
        <link>https://dx81.gendoas.de/</link>
        <image rdf:resource="https://dx81.gendoas.de/lib/tpl/arctic-mbo/images/favicon.ico" />
       <dc:date>2026-04-19T00:23:31+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://dx81.gendoas.de/doku.php?id=drupal:form:ahah&amp;rev=1654521230&amp;do=diff"/>
                <rdf:li rdf:resource="https://dx81.gendoas.de/doku.php?id=drupal:form:build&amp;rev=1654521230&amp;do=diff"/>
                <rdf:li rdf:resource="https://dx81.gendoas.de/doku.php?id=drupal:form:token&amp;rev=1654521230&amp;do=diff"/>
                <rdf:li rdf:resource="https://dx81.gendoas.de/doku.php?id=drupal:form:x_bs&amp;rev=1654521230&amp;do=diff"/>
                <rdf:li rdf:resource="https://dx81.gendoas.de/doku.php?id=drupal:form:x_tabs&amp;rev=1654521230&amp;do=diff"/>
                <rdf:li rdf:resource="https://dx81.gendoas.de/doku.php?id=drupal:form:x_uebersicht&amp;rev=1654521230&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://dx81.gendoas.de/lib/tpl/arctic-mbo/images/favicon.ico">
        <title>dx.new</title>
        <link>https://dx81.gendoas.de/</link>
        <url>https://dx81.gendoas.de/lib/tpl/arctic-mbo/images/favicon.ico</url>
    </image>
    <item rdf:about="https://dx81.gendoas.de/doku.php?id=drupal:form:ahah&amp;rev=1654521230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-06T15:13:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>drupal:form:ahah</title>
        <link>https://dx81.gendoas.de/doku.php?id=drupal:form:ahah&amp;rev=1654521230&amp;do=diff</link>
        <description>AHAH=Asynchronous HTML and HTTP, ein Ajax-ähnliches Konzept der asynchronen Datenübertragung zwischen einem Webbrowser und dem Server.

Dank der in die Form-Api von Drupal integrierten AHAH - Library ist es für Modulentwickler ohne großen Aufwand möglich, AJAX in Webanwendungen zu integrieren</description>
    </item>
    <item rdf:about="https://dx81.gendoas.de/doku.php?id=drupal:form:build&amp;rev=1654521230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-06T15:13:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>drupal:form:build</title>
        <link>https://dx81.gendoas.de/doku.php?id=drupal:form:build&amp;rev=1654521230&amp;do=diff</link>
        <description>form.inc::_drupal_build_form($form_id, &amp;$form_state) api

	*  $form_state, $args, $SESSION,
	*  cache: $form = form_get_cache(...)
	*  !isset($form)
		*  $form = call_user_func_array(&#039;drupal_retrieve_form&#039;, $args_temp); api
			*  etwa $form_id=&#039;views_ui_add_form&#039;</description>
    </item>
    <item rdf:about="https://dx81.gendoas.de/doku.php?id=drupal:form:token&amp;rev=1654521230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-06T15:13:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>drupal:form:token</title>
        <link>https://dx81.gendoas.de/doku.php?id=drupal:form:token&amp;rev=1654521230&amp;do=diff</link>
        <description>form.inc::drupal_prepare_form($form_id, &amp;$form, &amp;$form_state) api


  // Add a token, based on either #token or form_id, to any form displayed to
  // authenticated users. This ensures that any submitted form was actually
  // requested previously by the user and protects against cross site request
  // forgeries.
  if (isset($form[&#039;#token&#039;])) {
    if ($form[&#039;#token&#039;] === FALSE || $user-&gt;uid == 0 || $form[&#039;#programmed&#039;]) {
      unset($form[&#039;#token&#039;]);
    }
    else {
      $form[&#039;form_token&#039;]…</description>
    </item>
    <item rdf:about="https://dx81.gendoas.de/doku.php?id=drupal:form:x_bs&amp;rev=1654521230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-06T15:13:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>drupal:form:x_bs</title>
        <link>https://dx81.gendoas.de/doku.php?id=drupal:form:x_bs&amp;rev=1654521230&amp;do=diff</link>
        <description>*  views/includes/form.inc::drupal_process_form_new($form_id, &amp;$form, &amp;$form_state) api
		*  $form_state
		*  $form = form_builder($form_id, $form, $form_state); api
		*  if(... $form[&#039;#post&#039;]...)

	*  form_builder($form_id, $form, $form_state)
		*  ...
		*</description>
    </item>
    <item rdf:about="https://dx81.gendoas.de/doku.php?id=drupal:form:x_tabs&amp;rev=1654521230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-06T15:13:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>drupal:form:x_tabs</title>
        <link>https://dx81.gendoas.de/doku.php?id=drupal:form:x_tabs&amp;rev=1654521230&amp;do=diff</link>
        <description></description>
    </item>
    <item rdf:about="https://dx81.gendoas.de/doku.php?id=drupal:form:x_uebersicht&amp;rev=1654521230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-06T15:13:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>drupal:form:x_uebersicht</title>
        <link>https://dx81.gendoas.de/doku.php?id=drupal:form:x_uebersicht&amp;rev=1654521230&amp;do=diff</link>
        <description>*  FAPI
	*  D7.Form-API: ..tabellarisch</description>
    </item>
</rdf:RDF>
