| Daizu documentation | view source | Contained in the Daizu distribution. |
Daizu::Plugin::RelatedLinks - add information to 'img' elements
This plugin adds a box in the 'extras-col' (the right-hand column of
each page) for articles with a daizu:links property.
Warning: this plugin is experimental and is almost certain to change the way it works later. At a minimum the two text files it loads are likely to become database tables. The property name used might also change.
There is a blog article discussing the design of this feature, and also providing an example of what the related links look like:
http://www.daizucms.org/blog/2006/11/related-links/
To use this you add a property called daizu:links to an article
file. This should contain one or more URLs separated by whitespace
(probably best to put them on separate lines). The URLs must be
listed in a file called _hide/links.txt, which contains the following
tab-separated fields:
The name of the link source is looked up in a separate text file called _hide/link-sources.txt which is in a similar format, with the following fields:
If the URLs of the link itself and the source are the same then only one link is shown, using the title of the link.
To turn on this plugin, include the following in your Daizu CMS configuration file:
<plugin class="Daizu::Plugin::RelatedLinks" />
Registers the plugin as a filter for all articles at or in $path.
Does the actual filtering in-place on $doc and returns it.
This doesn't actually modify the content, just adds an 'extra template'
if there is a daizu:links property on the file.
This is called by the template plugin/relatedlinks_extras.tt to
get the links which should be provided. If that template is used then
this is expected to return at least one related link. $file
should be the article file whose page is being generated.
This is a class method so that it can be called using the Template::Plugin::Class module from the template.
This gets the URLs from the daizu:links property and finds the
extra metadata for them in the files _hide/links.txt and
_hide/link-sources.txt. Those files must exist and must contain
information about any URLs referenced in the property, and any link
'sources' referenced for those URLs.
Returns a reference to an array of hashes containing the URLs and titles.
This software is copyright 2006 Geoff Richards <geoff@laxan.com>. For licensing information see this page:
| Daizu documentation | view source | Contained in the Daizu distribution. |