This page (revision-1) was last changed on 2019-12-18 09:13 by UnknownAuthor

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 added 54 lines
The __NextPlugin__ is a [NeWikiPlugin] that creates a 'next page' link, with a selectable icon.
This also sets a page attribute "next-page-name" to the name of the next page.
If more than one instance occurs on a page the last one processed wins.
See also: [PreviousPlugin]
!! Parameters
* __page__ = '''name'''. A required parameter providing the name of the target page.
* __icon__ = '''arrow''' | '''button''' | '''hand''' | '''page''' | '''triangle'''. An optional parameter indicating the type of icon to use. The default is 'arrow'.
* __text__ = '''true''' | '''on''' | '''yes''' . An optional parameter flag that if true shows the page name in the link (default true).
!! Test
(default icon)
{{{
[{NextPlugin page='Main'}]
}}}
[{NextPlugin page='Main'}]
{{{
[{NextPlugin icon='button' page='Main'}]
}}}
[{NextPlugin icon='button' page='Main'}]
{{{
[{NextPlugin icon='hand' page='Main'}]
}}}
[{NextPlugin icon='hand' page='Main'}]
{{{
[{NextPlugin icon='page' page='Main'}]
}}}
[{NextPlugin icon='page' page='Main'}]
{{{
[{NextPlugin icon='triangle' page='Main'}]
}}}
[{NextPlugin icon='triangle' page='Main'}]
{{{
[{NextPlugin icon='triangle' text='no' page='Main'}]
}}}
[{NextPlugin icon='triangle' text='no' page='Main'}]
----
See also: [PreviousPlugin]