7. Juni 2015 Ursprungsversion

Favorites Plugin

The star icon on a wiki page The starred plugin allows users to remember pages.

This (German) screencast show the plugin in action:

Download and Installation

Download and install the plugin using the Plugin Manager using the following URL:

Refer to Plugins on how to install plugins manually.

The tagging plugin needs the SQLite plugin.

After installation, you should include a link for users to save a page as favourite. Put the following into your template's main.php:

<?php
    //Starred
    $starred = plugin_load('action','starred');
    $starred->tpl_starred();
?>

Optionally, you might call tpl_starred(true) instead: This omits the image and just gives the (empty) link.

Usage

Overview over all starred pages To list the current user's saved pages, add {{starred}} to a page. An optional minimal mode gives no text if the current user has starred no pages and leaves out the saving date: {{starred>min}}. Finally, you might limit the number of shown pages: {{starred>min|5}} and {{starred|5}}, respectively.