Source for file _linkblog.php
Documentation is available at _linkblog.php
* This is the template that displays the linkblog
* This file is not meant to be called directly.
* It is meant to be called by an include in the _main.php template.
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
if( !defined('DB_USER') ) die( 'Please, do not access this page directly.' );
# maximum number of linkblog entries to display:
if(!isset
($linkblog_limit)) $linkblog_limit =
20;
# global linkblog delimiters:
if(!isset
($linkblog_main_start)) $linkblog_main_start =
'<div class="bSideItem"><h3>'.
if(!isset
($linkblog_main_end)) $linkblog_main_end =
'</div>';
if(!isset
($linkblog_catname_before)) $linkblog_catname_before =
'<h4>';
if(!isset
($linkblog_catname_after)) $linkblog_catname_after =
'</h4><ul>';
if(!isset
($linkblog_catlist_end)) $linkblog_catlist_end =
'</ul>';
if(!isset
($linkblog_item_before)) $linkblog_item_before =
'<li>';
if(!isset
($linkblog_item_after)) $linkblog_item_after =
'</li>';
* This skin has no special formatting for the linkblog, so...
* However you can replace this file with the full handler (in /blogs) and customize it!
* all we want to do here, is call the default linkblog handler.
require
get_path('skins').
'/_linkblog.php';