Laatste Nieuws

  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.
  • The Views module allows administrators to create dynamic lists of content for display in pages or blocks. It is also possible to insert those lists into existing node bodies, but such inclusion requires that PHP filtering be turned on. This module allows any user to insert view listings using tag syntax, without the need for PHP execution permissions.

    [view:my view]
    will be replaced by the full listing of content defined by that view.
    [view:my view=10]
    will limit the listing to 10 items.
  • You may use [block:module=delta] tags to display the contents of block delta for module module.
  • Flash Filter

    The basic syntax for embedding a flash file (.swf), flash movie (.flv) or audio file (.mp3) is:

    [flash:filename.swf]

    If you would like to override SWF Tools and flash player default settings, you can specify additional parameters. For example:

    Flash Filter will accept following parameters:
    • params : You can specify values for output inside <param> tags with the <embed> html. Typical values are bgcolor and wmode. Example: params="wmode=true&&bgcolor=#00FF00"
    • flashvars : You can specify values for output as flashvars, which become available to the flash player. Refer to the documentation of the flash player you are using to know what flashvar options are available. Example: flashvars="autostart=true&&volume=80"
    • files : Optional list of files to be passed, you'll normally define files relative to your Drupal files directory. Example: files="name1=image.jpg&&name2=movie.flv"
    • methods : Optional information about how to display the file. The most common usage is to specify a particular media player and thus override the settings page. Example: methods="player=onepixelout_mp3"

    WARNING: with params, flashvars and othervars, pass multiple values separated by &&.