By default, SimpleMenu is not shown on pop-up windows. There is a flag in the SimpleMenu settings that can be unchecked to avoid this side effect. The pop-up capability is often detected when you open a new tab from the current window. It will depend on the browser and the link being clicked1.
When the menu is only used by the administrators, it is possible to simply open a new tab and copy and paste the URL from the existing window with the missing menu to the ...
Global settings are found under Administer » Site configuration » To do list (admin/settings/to_do).
Only To Do List administrators can edit the Global Settings.
The plain keyword is used to avoid having the content being inserted put inside a tag. By default, the content is inserted inside a <span> or a <div> tag (<span> is used if the output does not include <div>, <p> and other such tags.)
Although one could overload the theme_InsertNode_node() theme function, it is at times practical to be able to use both methods.
The plain keyword does not otherwise generate any output.
This keyword primary use is for adding CCK parameters inside HTML code as proposed by one of our users (see here):
<input ...
This parameter inserts the date when the node was last modified.
Note that a node that was never edited does not have a modification date. When that happens, the creation date is used instead.
The date is formatted using the default format date function (see the Drupal format_date() function.)
CSS Class: span.insert-node-date
Theme: InsertNode_modified
See Also: Insert Node Parameter: created (6-1.0)
This parameter inserts the date when the specified node was created.
The date format defined for the site is used to display the date (see the Drupal function named format_date().)
CSS Class: span.insert-node-date
Theme: InsertNode_created
See Also: Insert Node Parameter: modified (6-1.0)
This parameter adds a quick link to edit the node1.
CSS Class: span.insert-node-edit
Theme: InsertNode_edit
See Also: Insert Node Parameter: link (5-1.0)
Attach the comments at the bottom of the node data.
The comments will be shown just as in the regular page (i.e. flat, thread, expanded, collapsed.)
Note that this data is considered a [no content] because it does not affect the use of the "default" parameter. However, it definitively adds content to your output.
CSS Class: div.insert-node-comments
Theme: InsertNode_comments
IMPORTANT NOTES
The comments are appended to anything else that you have inserted. You cannot use the order of your parameters to put the comments in a different location. In order to do that, use multiple
Display the title of the node as a link to the node, unthemed.
With version 6.x-1.1, it is possible to change the link to a text that you specify as in:
link=Read more about that in yesterday's post!;
CSS Class: span.insert-node-link
Theme: InsertNode_link
See Also: Insert Node Parameter: edit (6-1.2), Insert Node Parameter: more (6-1.1)
IMPORTANT NOTE
Note that the parameter value ends with a semi-colon! Do not include quotes unless you want to see them in the output. Yes. This means the text cannot include a semi-colon as is.
Display the words "Read more..." with a link to the node, unthemed.
Useful when just the teaser or the title are being shown.
The text "Read more..." can be changed by specifying a string after the parameter like this:
more=Lire la suite...;
CSS Class: span.insert-node-more
Theme: InsertNode_more
See Also: Insert Node Parameter: link (5-1.0)
IMPORTANT NOTE
Note that the parameter value ends with a semi-colon! Do not include quotes unless you want to see them in the output. Yes. This means the text cannot include a semi-colon as is.
Display the teaser of the node and the terms. Input filters are applied.
CSS Class: div.insert-node-teaser
Theme: InsertNode_teaser
See Also: Insert Node Parameter: body (5-1.x)