Revision 2055:699a9314513f,
963 bytes
checked in by Dsls, 12 years ago
(diff) |
- Restored previous available pages actions
- strenghened code in actions (especially if no selection in secondary action page)
- isolated pages plugin classes, more readable now
- Made terms more generic in tags behaviors ("selection" instead of "entries")
|
Line | |
---|
1 | <?php |
---|
2 | # -- BEGIN LICENSE BLOCK --------------------------------------- |
---|
3 | # |
---|
4 | # This file is part of Dotclear 2. |
---|
5 | # |
---|
6 | # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear |
---|
7 | # Licensed under the GPL version 2.0 license. |
---|
8 | # See LICENSE file or |
---|
9 | # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html |
---|
10 | # |
---|
11 | # -- END LICENSE BLOCK ----------------------------------------- |
---|
12 | if (!defined('DC_RC_PATH')) { return; } |
---|
13 | |
---|
14 | global $core, $__autoload; |
---|
15 | |
---|
16 | $__autoload['dcPagesActionsPage'] = dirname(__FILE__).'/class.actionpage.php'; |
---|
17 | $__autoload['adminPageList'] = dirname(__FILE__).'/class.listpage.php'; |
---|
18 | |
---|
19 | $core->url->register('pages','pages','^pages/(.+)$',array('urlPages','pages')); |
---|
20 | $core->url->register('pagespreview','pagespreview','^pagespreview/(.+)$',array('urlPages','pagespreview')); |
---|
21 | |
---|
22 | $core->setPostType('page','plugin.php?p=pages&act=page&id=%d',$core->url->getURLFor('pages','%s'),'Pages'); |
---|
23 | |
---|
24 | # We should put this as settings later |
---|
25 | $GLOBALS['page_url_format'] = '{t}'; |
---|
26 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.