Compose tips

Compose tips

invokes the myview view using the mydisplay view display ID. If the display slot is left empty, the view's "default" display is used.

isturned off. If you need to use forms, understand and use the functions inthe Drupal Form API.- Use a print

Drupal.orgofferssome example PHP snippets, or you can create your own with some PHP experience and knowledge of the Drupal system.- Remember to double-check each line for syntax and logic errors - Video FilterYou may insert videos from popular video sites by using a simple tag

You must use the URL of the RSS feed for the Picasa album:- View the album in Picasa (you should see thumbnails, not a slideshow). - Find the "RSS" link and click it. - Copy the resulting URL from the browser address bar. Example: [video: http://picasaweb.google.com/data/feed/base/user/USERNAME/albumid/5568104935784209834?alt=rss&kind=photo&hl=enUS]

Allowed HTML tags:

This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.

For more information see W3C's HTML Specifications or use your favorite search engine to find other sites that explain HTML.

Tag Description You Type You Get
Anchors are used to make links to other pages. The Jazzman The Jazzman
Emphasized Emphasized Emphasized
Strong Strong Strong
Cited Cited Cited
Coded text used to show programming source code Coded Coded
Unordered list - use the
  • to begin each list item
    • First item
    • Second item
    First item Second item
    Ordered list - use the
  • to begin each list item
    1. First item
    2. Second item
    First item Second item
    Definition lists are similar to other HTML lists.
    begins the definition list,
    begins the definition term and
    begins the definition description.
    First term
    First definition
    Second term
    Second definition
    First term First definition Second term Second definition
    The Jazzman
    Emphasized
    Strong
    Cited
    Coded
    Coded
    • First item
    • Second item
    • First item
    • Second item
    1. First item
    2. Second item
    1. First item
    2. Second item
    First term
    First definition
    Second term
    Second definition

    Most unusual characters can be directly entered without any problems.

    If you do encounter problems, try using HTML character entities. A common example looks like & for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:

    Character Description You Type You Get
    Ampersand & &
    Greater than > >
    Less than < <
    Quotation mark " "
    &
    >
    <
    "

    The Views module allows administrators to create dynamic lists of content for display in pages or blocks. It is possible to insert those lists into existing node bodies and blocks, but such inclusion requires that PHP filtering be turned on. The Insert View module allows any user to insert view listings using tag syntax, without the need for PHP execution permissions. The Insert View tag syntax for embedding a view is relatively simple:

    [view:my_view]

    is replaced by the content listing corresponding to the named view. In this case it is my_view.

    [view:my_view=my_display]

    invokes the my_view view using the my_display view display ID. If the display slot is left empty, the view's "default" display is used.

    [view:my_view=my_display=1,2,3]

    uses the my_display view display, and passes a comma delimited list of arguments (in this case 1, 2, and 3) to the view.

    Here's an example you could use with the default view named "tracker" which uses the page display and takes a user ID as an argument:

    [view:tracker=page=1]

    In short this tag says, "Insert the view named tracker, use the "page" display, and supply the argument 1."

    Sometimes you want to pass an argument without specifying a display ID. You can do that by leaving the display ID slot empty, like so:

    [view:my_view==1]

    How to find a display ID: On the edit page for the view in question, you'll find a list of displays at the left side of the control area. "Defaults" will be at the top of that list. Hover your mouse pointer over the name of the display you want to use. A URL will appear in the status bar of your browser. This is usually at the bottom of the window, in the chrome. Everything after #views-tab- is the display ID. For example in http://localhost/admin/build/views/edit/tracker?destination=node%2F51#views-tab-page the display ID would be "page".

    Using custom PHP code

    Custom PHP code may be embedded in some types of site content, including posts and blocks. While embedding PHP code inside a post or block is a powerful and flexible feature when used by a trusted user with PHP experience, it is a significant and dangerous security risk when used improperly. Even a small mistake when posting PHP code may accidentally compromise your site.

    If you are unfamiliar with PHP, SQL, or Drupal, avoid using custom PHP code within posts. Experimenting with PHP may corrupt your database, render your site inoperable, or significantly compromise security.

    Notes:

    • Remember to double-check each line for syntax and logic errors before saving.
    • Statements must be correctly terminated with semicolons.
    • Global variables used within your PHP code retain their values after your script executes.
    • register_globals is turned off. If you need to use forms, understand and use the functions in the Drupal Form API.
    • Use a print or return statement in your code to output content.
    • Develop and test your PHP code using a separate test script and sample database before deploying on a production site.
    • Consider including your custom PHP code within a site-specific module or template.php file rather than embedding it directly into a post or block.
    • Be aware that the ability to embed PHP code within content is provided by the PHP Filter module. If this module is disabled or deleted, then blocks and posts with embedded PHP may display, rather than execute, the PHP code.
    register_globals
    print
    return
    template.php

    A basic example: Creating a "Welcome" block that greets visitors with a simple message.

    • Add a custom block to your site, named "Welcome". With its input format set to "PHP code" (or another format supporting PHP input), add the following in the Block body: print t('Welcome visitor! Thank you for visiting.');
    • To display the name of a registered user, use this instead: global $user; if ($user->uid) { print t('Welcome @name! Thank you for visiting.', array('@name' => $user->name)); } else { print t('Welcome visitor! Thank you for visiting.'); }

    Add a custom block to your site, named "Welcome". With its input format set to "PHP code" (or another format supporting PHP input), add the following in the Block body:

    print t('Welcome visitor! Thank you for visiting.');

    To display the name of a registered user, use this instead:

    global $user;
    if ($user->uid) {
     print t('Welcome @name! Thank you for visiting.', array('@name' => $user->name));
    }
    else {
     print t('Welcome visitor! Thank you for visiting.');
    }

    Drupal.org offers some example PHP snippets, or you can create your own with some PHP experience and knowledge of the Drupal system.

    Video Filter

    You may insert videos from popular video sites by using a simple tag [video:URL].

    [video:URL]

    Examples:

    • Single video:[video:http://www.youtube.com/watch?v=uN1qUeId]
    • Random video out of multiple:[video:http://www.youtube.com/watch?v=uN1qUeId1,http://www.youtube.com/watch?v=uN1qUeId2]
    • Override default autoplay setting: [video:http://www.youtube.com/watch?v=uN1qUeId autoplay:1]
    • Override default width and height:[video:http://www.youtube.com/watch?v=uN1qUeId width:X height:Y]
    • Align the video:[video:http://www.youtube.com/watch?v=uN1qUeId align:right]
    [video:http://www.youtube.com/watch?v=uN1qUeId]
    [video:http://www.youtube.com/watch?v=uN1qUeId1,http://www.youtube.com/watch?v=uN1qUeId2]
    [video:http://www.youtube.com/watch?v=uN1qUeId autoplay:1]
    [video:http://www.youtube.com/watch?v=uN1qUeId width:X height:Y]
    [video:http://www.youtube.com/watch?v=uN1qUeId align:right]

    Supported sites: YouTube, Google Video, Tangle, DailyMotion, Eyespot, Revver, Vimeo, Flickr Slideshows, Flickr Video, Game Videos, Meta Cafe, Game Trailers, College Humor, MySpace, Capped, Blip.tv, Slideshare, Picasa Slideshows.

    Special instructions:

    • Slideshare:You need to construct your own URL, using the "Wordpress Embed" code from Slideshare, extract the "id" and "doc" parts, and form the URL like this: slideshare.net/?id=1759622&doc=usingdrupal-090723103440-phpapp01.
    • Picasa Slideshows:You must use the URL of the RSS feed for the Picasa album:View the album in Picasa (you should see thumbnails, not a slideshow).Find the "RSS" link and click it.Copy the resulting URL from the browser address bar. Example: [video: http://picasaweb.google.com/data/feed/base/user/USER_NAME/albumid/5568104935784209834?alt=rss&kind=photo&hl=en_US]
    1. View the album in Picasa (you should see thumbnails, not a slideshow).
    2. Find the "RSS" link and click it.
    3. Copy the resulting URL from the browser address bar. Example: [video: http://picasaweb.google.com/data/feed/base/user/USER_NAME/albumid/5568104935784209834?alt=rss&kind=photo&hl=en_US]
    [video: http://picasaweb.google.com/data/feed/base/user/USER_NAME/albumid/5568104935784209834?alt=rss&kind=photo&hl=en_US]