lastBlogUpdate/_widgets.php

114 lines
2.8 KiB
PHP
Raw Normal View History

2015-04-22 21:44:23 +00:00
<?php
# -- BEGIN LICENSE BLOCK ----------------------------------
#
# This file is part of lastBlogUpdate, a plugin for Dotclear 2.
#
2021-08-27 19:29:07 +00:00
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors
2015-04-22 21:44:23 +00:00
#
# Licensed under the GPL version 2.0 license.
# A copy of this license is available in LICENSE file or at
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) {
2021-08-27 19:29:07 +00:00
return null;
2015-04-22 21:44:23 +00:00
}
$core->addBehavior('initWidgets', 'lastBlogUpdateWidgetAdmin');
function lastBlogUpdateWidgetAdmin($w)
{
2021-08-27 19:29:07 +00:00
global $core;
$w
->create(
'lastblogupdate',
__('LastBlogUpdate: dates of lastest updates'),
'lastBlogUpdateWidgetPublic',
null,
"Show the dates of last updates of your blog in a widget"
)
->addTitle(__('Dates of lastest updates'))
->setting(
'blog_show',
__('Show blog update'),
1,
'check'
)
->setting(
'blog_title',
__('Title for blog update:'),
__('Blog:'),
'text'
)
->setting(
'blog_text',
__('Text for blog update:'),
__('%Y-%m-%d %H:%M'),
'text'
)
->setting(
'post_show',
__('Show entry update'),
1,
'check'
)
->setting(
'post_title',
__('Title for entries update:'),
__('Entries:'),
'text'
)
->setting(
'post_text',
__('Text for entries update:'),
__('%Y-%m-%d %H:%M'),
'text'
)
->setting(
'comment_show',
__('Show comment update'),
1,
'check'
)
->setting(
'comment_title',
__('Title for comments update:'),
__('Comments:'),
'text'
)
->setting(
'comment_text',
__('Text for comments update:'),
__('%Y-%m-%d %H:%M'),
'text'
)
->setting(
'media_show',
__('Show media update'),
1,
'check'
)
->setting(
'media_title',
__('Title for media update:'),
__('Medias:'),
'text'
)
->setting(
'media_text',
__('Text for media update:'),
__('%Y-%m-%d %H:%M'),
'text'
);
2015-04-22 21:44:23 +00:00
2021-08-27 19:29:07 +00:00
# --BEHAVIOR-- lastBlogUpdateWidgetInit
$core->callBehavior('lastBlogUpdateWidgetInit', $w);
2015-04-22 21:44:23 +00:00
2021-08-27 19:29:07 +00:00
$w->lastblogupdate
->addHomeOnly()
->addContentOnly()
->addClass()
->addOffline();
2015-04-22 21:44:23 +00:00
}