Changeset 3302
- Timestamp:
- 04/04/14 17:01:00 (9 years ago)
- Location:
- plugins/writers
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/writers/_admin.php
r3232 r3302 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # 4 # This file is part of Dotclear 2.4 # This file is part of Writers, a plugin for Dotclear. 5 5 # 6 6 # Copyright (c) 2003-2008 Olivier Meunier and contributors … … 10 10 # 11 11 # -- END LICENSE BLOCK ------------------------------------ 12 if (!defined('DC_CONTEXT_ADMIN')) { return; } 12 13 13 14 $_menu['Blog']->addItem(__('Writers'),'plugin.php?p=writers','images/menu/users.png', 14 15 preg_match('/plugin.php\?p=writers/',$_SERVER['REQUEST_URI']), 15 16 $core->auth->check('admin',$core->blog->id)); 16 ?> -
plugins/writers/_define.php
r3232 r3302 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # 4 # This file is part of Dotclear 2.4 # This file is part of Writers, a plugin for Dotclear. 5 5 # 6 6 # Copyright (c) 2003-2008 Olivier Meunier and contributors … … 10 10 # 11 11 # -- END LICENSE BLOCK ------------------------------------ 12 if (!defined('DC_RC_PATH')) { 13 return null; 14 } 12 15 13 16 $this->registerModule( … … 15 18 /* Description*/ "Invite people to write on your blog", 16 19 /* Author */ "Olivier Meunier", 17 /* Version */ '1.1', 18 /* Permissions */ 'admin' 20 /* Version */ '1.2', 21 /* Properties */ 22 array( 23 'permissions' => 'admin', 24 'type' => 'plugin', 25 'dc_min' => '2.6', 26 'support' => 'http://lab.dotclear.org/wiki/plugin/writers', 27 'details' => 'http://plugins.dotaddict.org/dc2/details/writers' 28 ) 19 29 ); 20 ?> -
plugins/writers/_prepend.php
r225 r3302 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # 4 # This file is part of Dotclear 2.4 # This file is part of Writers, a plugin for Dotclear. 5 5 # 6 6 # Copyright (c) 2003-2008 Olivier Meunier and contributors … … 10 10 # 11 11 # -- END LICENSE BLOCK ------------------------------------ 12 13 12 14 13 # Following constants can be overrided in your install config.php: … … 24 23 return; 25 24 } 26 ?> -
plugins/writers/index.php
r3232 r3302 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # 4 # This file is part of Dotclear 2.4 # This file is part of Writers, a plugin for Dotclear. 5 5 # 6 6 # Copyright (c) 2003-2008 Olivier Meunier and contributors -
plugins/writers/locales/fr/resources.php
r3232 r3302 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # 4 # This file is part of authorMode, a plugin for DotClear2.4 # This file is part of Writers, a plugin for Dotclear. 5 5 # 6 # Copyright (c) 2003 Olivier Meunier and contributors6 # Copyright (c) 2003-2008 Olivier Meunier and contributors 7 7 # Licensed under the GPL version 2.0 license. 8 8 # See LICENSE file or … … 14 14 $__resources['help']['writers'] = dirname(__FILE__).'/help/writers.html'; 15 15 } 16 17 ?>
Note: See TracChangeset
for help on using the changeset viewer.