source: trunk/administration/pageBuilder.php

Last change on this file was 2, checked in by george, 14 years ago
  • Přidáno: Trunk revize 13719.
File size: 1.8 KB
Line 
1<?php
2/***************************************************************************
3* Dolphin Smart Community Builder
4* -------------------
5* begin : Mon Mar 23 2006
6* copyright : (C) 2007 BoonEx Group
7* website : http://www.boonex.com
8* This file is part of Dolphin - Smart Community Builder
9*
10* Dolphin is free software; you can redistribute it and/or modify it under
11* the terms of the GNU General Public License as published by the
12* Free Software Foundation; either version 2 of the
13* License, or any later version.
14*
15* Dolphin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
16* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17* See the GNU General Public License for more details.
18* You should have received a copy of the GNU General Public License along with Dolphin,
19* see license.txt file; if not, write to marketing@boonex.com
20***************************************************************************/
21
22define('BX_SECURITY_EXCEPTIONS', true);
23$aBxSecurityExceptions = array(
24 'POST.Content',
25 'REQUEST.Content',
26);
27
28require_once( '../inc/header.inc.php' );
29require_once( BX_DIRECTORY_PATH_INC . 'profiles.inc.php' );
30require_once( BX_DIRECTORY_PATH_INC . 'design.inc.php' );
31require_once( BX_DIRECTORY_PATH_INC . 'admin_design.inc.php' );
32require_once( BX_DIRECTORY_PATH_INC . 'db.inc.php' );
33require_once( BX_DIRECTORY_PATH_INC . 'admin.inc.php' );
34require_once( BX_DIRECTORY_PATH_INC . 'images.inc.php' );
35bx_import('BxDolPageViewAdmin');
36
37$logged['admin'] = member_auth( 1, true, true );
38
39$GLOBALS['oAdmTemplate']->addJsTranslation(array(
40 '_adm_btn_Column'
41));
42
43$oPVAdm = new BxDolPageViewAdmin( 'sys_page_compose', 'sys_page_compose.inc' );
44
45?>
Note: See TracBrowser for help on using the repository browser.