Changeset 3151 for plugins/dcom
- Timestamp:
- 08/01/13 12:37:06 (10 years ago)
- Location:
- plugins/dcom
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcom/CHANGELOG
r2982 r3151 1 2011-02-23 Alex Pirine <alex pirine.fr>2 3 * Dotclear 2.2.2 compatibility4 5 1 2008-04-13 Oleksandr Syenchuk <sacha@xn--phnix-csa.net> 6 2 -
plugins/dcom/_admin.php
r2994 r3151 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # This file is part of Dcom, a plugin for Dotclear. 4 # 5 # Copyright (c) 2007,2008,2011 Alex Pirine <alex pirine.fr> 6 # 7 # Licensed under the GPL version 2.0 license. 8 # A copy is available in LICENSE file or at 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # -- END LICENSE BLOCK ------------------------------------ 11 1 <?php /* -*- tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ 2 /***************************************************************\ 3 * This is 'Dcom', a plugin for Dotclear 2 * 4 * * 5 * Copyright (c) 2007-2008 * 6 * Oleksandr Syenchuk, Jean-François Michaud and contributors.* 7 * * 8 * This is an open source software, distributed under the GNU * 9 * General Public License (version 2) terms and conditions. * 10 * * 11 * You should have received a copy of the GNU General Public * 12 * License along 'Dcom' (see COPYING.txt); * 13 * if not, write to the Free Software Foundation, Inc., * 14 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * 15 \***************************************************************/ 12 16 if (!defined('DC_CONTEXT_ADMIN')) { return; } 13 17 -
plugins/dcom/_define.php
r2994 r3151 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # This file is part of Dcom, a plugin for Dotclear. 4 # 5 # Copyright (c) 2007,2008,2011 Alex Pirine <alex pirine.fr> 6 # 7 # Licensed under the GPL version 2.0 license. 8 # A copy is available in LICENSE file or at 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # -- END LICENSE BLOCK ------------------------------------ 11 1 <?php /* -*- tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ 2 /***************************************************************\ 3 * This is 'Dcom', a plugin for Dotclear 2 * 4 * * 5 * Copyright (c) 2007-2008 * 6 * Oleksandr Syenchuk, Jean-François Michaud and contributors.* 7 * * 8 * This is an open source software, distributed under the GNU * 9 * General Public License (version 2) terms and conditions. * 10 * * 11 * You should have received a copy of the GNU General Public * 12 * License along with 'Dcom' (see COPYING.txt); * 13 * if not, write to the Free Software Foundation, Inc., * 14 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * 15 \***************************************************************/ 12 16 if (!defined('DC_RC_PATH')) { return; } 13 17 … … 15 19 /* Name */ 'Dcom', 16 20 /* Description*/ 'Last comments with more options', 17 /* Author */ ' Alex Pirine',18 /* Version */ ' 2011.02',21 /* Author */ 'Oleksandr Syenchuk', 22 /* Version */ '0.8.1-dsls', 19 23 /* Permissions */ 'admin' 20 24 ); -
plugins/dcom/_prepend.php
r2994 r3151 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # This file is part of Dcom, a plugin for Dotclear. 4 # 5 # Copyright (c) 2007,2008,2011 Alex Pirine <alex pirine.fr> 6 # 7 # Licensed under the GPL version 2.0 license. 8 # A copy is available in LICENSE file or at 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # -- END LICENSE BLOCK ------------------------------------ 11 1 <?php /* -*- tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ 2 /***************************************************************\ 3 * This is 'Dcom', a plugin for Dotclear 2 * 4 * * 5 * Copyright (c) 2007-2008 * 6 * Oleksandr Syenchuk, Jean-François Michaud and contributors.* 7 * * 8 * This is an open source software, distributed under the GNU * 9 * General Public License (version 2) terms and conditions. * 10 * * 11 * You should have received a copy of the GNU General Public * 12 * License along 'Dcom' (see COPYING.txt); * 13 * if not, write to the Free Software Foundation, Inc., * 14 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * 15 \***************************************************************/ 12 16 if (!defined('DC_RC_PATH')) { return; } 13 17 -
plugins/dcom/_public.php
r2994 r3151 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # This file is part of Dcom, a plugin for Dotclear. 4 # 5 # Copyright (c) 2007,2008,2011 Alex Pirine <alex pirine.fr> 6 # 7 # Licensed under the GPL version 2.0 license. 8 # A copy is available in LICENSE file or at 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # -- END LICENSE BLOCK ------------------------------------ 11 1 <?php /* -*- tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ 2 /***************************************************************\ 3 * This is 'Dcom', a plugin for Dotclear 2 * 4 * * 5 * Copyright (c) 2007-2008 * 6 * Oleksandr Syenchuk, Jean-François Michaud and contributors.* 7 * * 8 * This is an open source software, distributed under the GNU * 9 * General Public License (version 2) terms and conditions. * 10 * * 11 * You should have received a copy of the GNU General Public * 12 * License along 'Dcom' (see COPYING.txt); * 13 * if not, write to the Free Software Foundation, Inc., * 14 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * 15 \***************************************************************/ 12 16 if (!defined('DC_RC_PATH')) { return; } 13 14 17 require dirname(__FILE__).'/_widgets.php'; 15 18 -
plugins/dcom/_widgets.php
r2994 r3151 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # This file is part of Dcom, a plugin for Dotclear. 4 # 5 # Copyright (c) 2007,2008,2011 Alex Pirine <alex pirine.fr> 6 # 7 # Licensed under the GPL version 2.0 license. 8 # A copy is available in LICENSE file or at 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # -- END LICENSE BLOCK ------------------------------------ 11 1 <?php /* -*- tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ 2 /***************************************************************\ 3 * This is 'Dcom', a plugin for Dotclear 2 * 4 * * 5 * Copyright (c) 2007-2008 * 6 * Oleksandr Syenchuk, Jean-François Michaud and contributors.* 7 * * 8 * This is an open source software, distributed under the GNU * 9 * General Public License (version 2) terms and conditions. * 10 * * 11 * You should have received a copy of the GNU General Public * 12 * License along 'Dcom' (see COPYING.txt); * 13 * if not, write to the Free Software Foundation, Inc., * 14 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * 15 \***************************************************************/ 12 16 if (!defined('DC_RC_PATH')) { return; } 13 17 14 $core->addBehavior('initWidgets',array(' widgetsDcom','initWidget'));18 $core->addBehavior('initWidgets',array('adminDcom','initWidget')); 15 19 16 class widgetsDcom20 class adminDcom 17 21 { 18 public static function initWidget( &$w)22 public static function initWidget($w) 19 23 { 20 24 global $core;
Note: See TracChangeset
for help on using the changeset viewer.