Table of Contents

  • Introduction
  • Information Tags
  • String Tags
  • Variable Tags
  • URL Tags
    · Introduction
    · apre
    · aconf
    · set_cookie
    · remove_cookie
    · auth-required
    · expire_time
    · header
    · redirect
    · return
    · killframe
  • If Tags
  • Graphics Tags
  • Database Tags
  • Programming Tags
  • Supports System
  • SSI
  • htaccess
  • Image Maps
  • Appendix
  •  <aconf> ... </aconf> 
    <aconf> is defined in the Main RXML parser module.

    Adds or removes config options.

    Config options are simple toggles that are stored in the cookie roxen-config. This ensures that they are persistent for that user, the same user will have the same config options even if he returns to the site another day. If cookies cannot be used, prestate variables are used instead.

    Use <if config=...> to test for the presence of a config option. <aconf> works just like the <a href=...> container tag, but if no href attribute is specified, the current page is used.

    Attributes
     

    Attributes

    Example
    source code
    
    <aconf +foo>Add the option</aconf>
    <br><aconf -foo>Remove the option</aconf>
    
    <p>if config=foo>
    The option is set.
    </if>
    <else>
    The option is not set.
    </else>
    

    result Add the option
    Remove the option

    if config=foo> The option is set.