27 lines
869 B
PHP
27 lines
869 B
PHP
<?php
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
#
|
|
# This file is part of DotClear.
|
|
#
|
|
# Plugin Bloganniv by Francis Trautmann
|
|
# Contributor: Pierre Van Glabeke
|
|
# Licensed under the GPL version 2.0 license.
|
|
# A copy of this license is available in LICENSE file at
|
|
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
if (!defined('DC_RC_PATH')) { return; }
|
|
$this->registerModule(
|
|
/* Name */ "Blog Anniv",
|
|
/* Description*/ "Counting the number of days before and after a particular date",
|
|
/* Author */ "Fran6t, Pierre Van Glabeke",
|
|
/* Version */ '1.5.1',
|
|
/* Properties */
|
|
array(
|
|
'permissions' => 'blogAnniv',
|
|
'type' => 'plugin',
|
|
'dc_min' => '2.7',
|
|
'support' => 'http://www.myouaibe.com/index.php/post/2007/08/23/Plugin-BlogAnniv-pour-DOTCLEAR-2',
|
|
'details' => 'http://plugins.dotaddict.org/dc2/details/bloganniv'
|
|
)
|
|
); |