2015-05-30 15:21:33 +00:00
|
|
|
<?php
|
|
|
|
# -- BEGIN LICENSE BLOCK ----------------------------------
|
|
|
|
# This file is part of comListe, a plugin for Dotclear.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2008-2015 Benoit de Marne
|
|
|
|
# benoit.de.marne@gmail.com
|
|
|
|
#
|
|
|
|
# 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')) { return; }
|
|
|
|
|
|
|
|
$this->registerModule(
|
|
|
|
/* Name */ "ComListe",
|
|
|
|
/* Description*/ "Display a list of all comments and trackbacks of a blog in a public page",
|
|
|
|
/* Author */ "Benoit de Marne, Pierre Van Glabeke",
|
2018-02-13 23:54:57 +00:00
|
|
|
/* Version */ '0.4.2',
|
2015-05-30 15:21:33 +00:00
|
|
|
/* Properties */
|
|
|
|
array(
|
|
|
|
'permissions' => 'admin',
|
|
|
|
'type' => 'plugin',
|
2015-07-19 23:17:21 +00:00
|
|
|
'dc_min' => '2.8',
|
2015-07-23 16:48:10 +00:00
|
|
|
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=333985#p333985',
|
2015-05-30 15:21:33 +00:00
|
|
|
'details' => 'http://plugins.dotaddict.org/dc2/details/comListe'
|
|
|
|
)
|
|
|
|
);
|