Create documents
-
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 &&.
- params : You can specify values for output inside <param>
tags with the <embed> html. Typical values are
bgcolor and wmode. Example:
- 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.
- Web page addresses and e-mail addresses turn into links automatically.
- If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
- This code will be replaced by a mugshot image :
[mugshot:item_id] - Images can be added to this post.
- Insert Flickr images: [flickr-photo:id=230452326,size=s] or [flickr-photoset:id=72157594262419167,size=m].The size parameter can be one of the following:
- s - Array
- t - Array
- m - Array
- - - Array
- b - Array
- o - Array
-
Using custom PHP code
If you know how to script in PHP, Drupal gives you the power to embed any script you like. It will be executed when the page is viewed and dynamically embedded into the page. This gives you amazing flexibility and power, but of course with that comes danger and insecurity if you do not write good code. If you are not familiar with PHP, SQL or with the site engine, avoid experimenting with PHP because you can corrupt your database or render your site insecure or even unusable! If you do not plan to do fancy stuff with your content then you are probably better off with straight HTML.
Remember that the code within each PHP item must be valid PHP code - including things like correctly terminating statements with a semicolon. It is highly recommended that you develop your code separately using a simple test script on top of a test database before migrating to your production environment.
Notes:
- You can use global variables, such as configuration parameters, within the scope of your PHP code but remember that global variables which have been given values in your code will retain these values in the engine afterwards.
- register_globals is now set to off by default. If you need form information you need to get it from the "superglobals" $_POST, $_GET, etc.
- You can either use the
printorreturnstatement to output the actual content for your item.
A basic example:
You want to have a box with the title "Welcome" that you use to greet your visitors. The content for this box could be created by going:
print t("Welcome visitor, ... welcome message goes here ...");If we are however dealing with a registered user, we can customize the message by using:
global $user; if ($user->uid) { print t("Welcome $user->name, ... welcome message goes here ..."); } else { print t("Welcome visitor, ... welcome message goes here ..."); }For more in-depth examples, we recommend that you check the existing Drupal code and use it as a starting point, especially for sidebar boxes.
