Hi.
The QuickLink-Plugin does not show up in Serendipity Pluginpanel, although I uploaded its folder to "plugins".
The Link List-Plugin is not suitable for me, because I do not have a side bar... well, I think I don't have one, because installing the plugin does not change anything on my blog (I chose a 2-column-design). Maybe it also doesn't work, because it shows up in "event plugins" and not in "sidebar plugins" (there is no page for configuration).
I tried the HTML nugget, but as the description reads ("Puts an HTML nugget on top or bottom of the page, or inside the page's HEAD tag") it is not able to put a box like the calendar into the sidebar. I just tested all options it offers. It is only limited to showing text above and under the content.
Thanks for your efforts anyway.
There has to be an easy way to create such a box. I only want to show some links? Isn't it possible with Serendipity?
Edit: I just noticed there are two links to install plugins

... I'll try if I have success with the installation link for side bar plugins ^^.
Edit: Ok, I just wrote myself a
very little "plugin". One file, one kb

:
Code: Select all
<?php # $Id: serendipity_plugin_links.php 1337 2008-03-24 11:00:00Z hackattack2001 $
class serendipity_plugin_links extends serendipity_plugin {
var $title = "Links in Navigation";
function introspect(&$propbag)
{
$this->title = $this->get_config('title', $this->title);
$propbag->add('name', 'Links in Navigation');
$propbag->add('description', 'Zeigt in der Navigation meine Lieblingslinks');
$propbag->add('stackable', false);
$propbag->add('author', 'Sebastian Flemig');
$propbag->add('version', '1.0');
$propbag->add('requirements', array(
'serendipity' => '0.8',
'smarty' => '2.6.7',
'php' => '4.1.0'
));
$propbag->add('configuration', array('links'));
$propbag->add('groups', array('FRONTEND_VIEWS'));
}
function introspect_config_item($name, &$propbag)
{
switch($name)
{
case 'links':
$propbag->add('type', 'string');
$propbag->add('name', 'Links in Navigation');
$propbag->add('description', 'Zeigt in der Navigation meine Lieblingslinks');
break;
default:
return false;
}
return true;
}
function generate_content(&$title)
{
global $serendipity;
$title = 'Links';
$wordwrap = $this->get_config('links');
echo "<a title=\"Some Link\" href=\"http://www.google.de\">google.de</a>";
}
}
?>