1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?php
# -- BEGIN LICENSE BLOCK ---------------------------------------
#
# This file is part of Dotclear 2.
#
# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
# Licensed under the GPL version 2.0 license.
# See LICENSE file or
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK -----------------------------------------
if (!defined('DC_RC_PATH')) { return; }
$core->addBehavior('initWidgets',array('blogrollWidgets','initWidgets'));
$core->addBehavior('initDefaultWidgets',array('blogrollWidgets','initDefaultWidgets'));
class blogrollWidgets
{
public static function initWidgets($w)
{
$w->create('links',__('Blogroll'),array('tplBlogroll','linksWidget'),null,'Blogroll list');
$w->links->setting('title',__('Title (optional)').' :',__('Links'));
$br = new dcBlogroll($GLOBALS['core']->blog);
$h = $br->getLinksHierarchy($br->getLinks());
$h = array_keys($h);
$categories = array(__('All categories') => '');
foreach ($h as $v) {
if ($v) {
$categories[$v] = $v;
}
}
unset($br,$h);
$w->links->setting('category',__('Category'),'','combo',$categories);
$w->links->setting('homeonly',__('Display on:'),1,'combo',
array(
__('All pages') => 0,
__('Home page only') => 1,
__('Except on home page') => 2
)
);
$w->links->setting('content_only',__('Content only'),0,'check');
$w->links->setting('class',__('CSS class:'),'');
}
public static function initDefaultWidgets($w,$d)
{
$d['extra']->append($w->links);
}
}
|