| 1 | 
        
            1009
         | 
        
            Ruebenwurz
         | 
        <?php
  | 
      
      
        | 2 | 
        
         | 
        
         | 
        
  | 
      
      
        | 3 | 
        
         | 
        
         | 
        // $Id$
  | 
      
      
        | 4 | 
        
         | 
        
         | 
        
  | 
      
      
        | 5 | 
        
         | 
        
         | 
        /*
  | 
      
      
        | 6 | 
        
         | 
        
         | 
        
  | 
      
      
        | 7 | 
        
         | 
        
         | 
         Website Baker Project <http://www.websitebaker.org/>
  | 
      
      
        | 8 | 
        
         | 
        
         | 
         Copyright (C) 2004-2009, Ryan Djurovich
  | 
      
      
        | 9 | 
        
         | 
        
         | 
        
  | 
      
      
        | 10 | 
        
         | 
        
         | 
         Website Baker is free software; you can redistribute it and/or modify
  | 
      
      
        | 11 | 
        
         | 
        
         | 
         it under the terms of the GNU General Public License as published by
  | 
      
      
        | 12 | 
        
         | 
        
         | 
         the Free Software Foundation; either version 2 of the License, or
  | 
      
      
        | 13 | 
        
         | 
        
         | 
         (at your option) any later version.
  | 
      
      
        | 14 | 
        
         | 
        
         | 
        
  | 
      
      
        | 15 | 
        
         | 
        
         | 
         Website Baker is distributed in the hope that it will be useful,
  | 
      
      
        | 16 | 
        
         | 
        
         | 
         but WITHOUT ANY WARRANTY; without even the implied warranty of
  | 
      
      
        | 17 | 
        
         | 
        
         | 
         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  | 
      
      
        | 18 | 
        
         | 
        
         | 
         GNU General Public License for more details.
  | 
      
      
        | 19 | 
        
         | 
        
         | 
        
  | 
      
      
        | 20 | 
        
         | 
        
         | 
         You should have received a copy of the GNU General Public License
  | 
      
      
        | 21 | 
        
         | 
        
         | 
         along with Website Baker; if not, write to the Free Software
  | 
      
      
        | 22 | 
        
         | 
        
         | 
         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  | 
      
      
        | 23 | 
        
         | 
        
         | 
        
  | 
      
      
        | 24 | 
        
         | 
        
         | 
        */
  | 
      
      
        | 25 | 
        
         | 
        
         | 
        
  | 
      
      
        | 26 | 
        
         | 
        
         | 
        // Include config file
  | 
      
      
        | 27 | 
        
         | 
        
         | 
        require('../../config.php');
 | 
      
      
        | 28 | 
        
         | 
        
         | 
        
  | 
      
      
        | 29 | 
        
         | 
        
         | 
        // Make sure people are allowed to access this page
  | 
      
      
        | 30 | 
        
         | 
        
         | 
        if(MANAGE_SECTIONS != 'enabled') {
 | 
      
      
        | 31 | 
        
         | 
        
         | 
        	header('Location: '.ADMIN_URL.'/pages/index.php');
 | 
      
      
        | 32 | 
        
         | 
        
         | 
        	exit(0);
  | 
      
      
        | 33 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 34 | 
        
         | 
        
         | 
        
  | 
      
      
        | 35 | 
        
         | 
        
         | 
        // Get page id
  | 
      
      
        | 36 | 
        
         | 
        
         | 
        if(!isset($_GET['page_id']) OR !is_numeric($_GET['page_id'])) {
 | 
      
      
        | 37 | 
        
         | 
        
         | 
        	header("Location: index.php");
 | 
      
      
        | 38 | 
        
         | 
        
         | 
        	exit(0);
  | 
      
      
        | 39 | 
        
         | 
        
         | 
        } else {
 | 
      
      
        | 40 | 
        
         | 
        
         | 
        	$page_id = $_GET['page_id'];
  | 
      
      
        | 41 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 42 | 
        
         | 
        
         | 
        
  | 
      
      
        | 43 | 
        
         | 
        
         | 
        $debug = false; // to show position and section_id
  | 
      
      
        | 44 | 
        
         | 
        
         | 
        
  | 
      
      
        | 45 | 
        
         | 
        
         | 
        // Create new admin object
  | 
      
      
        | 46 | 
        
         | 
        
         | 
        require_once(WB_PATH.'/framework/class.admin.php');
  | 
      
      
        | 47 | 
        
         | 
        
         | 
        $admin = new admin('Pages', 'pages_modify');
 | 
      
      
        | 48 | 
        
         | 
        
         | 
        
  | 
      
      
        | 49 | 
        
         | 
        
         | 
        // Check if we are supposed to add or delete a section
  | 
      
      
        | 50 | 
        
         | 
        
         | 
        if(isset($_GET['section_id']) AND is_numeric($_GET['section_id'])) {
 | 
      
      
        | 51 | 
        
         | 
        
         | 
        	// Get more information about this section
  | 
      
      
        | 52 | 
        
         | 
        
         | 
        	$section_id = $_GET['section_id'];
  | 
      
      
        | 53 | 
        
         | 
        
         | 
        	$query_section = $database->query("SELECT module FROM ".TABLE_PREFIX."sections WHERE section_id = '$section_id'");
 | 
      
      
        | 54 | 
        
         | 
        
         | 
        	if($query_section->numRows() == 0) {
 | 
      
      
        | 55 | 
        
         | 
        
         | 
        		$admin->print_error('Section not found');
 | 
      
      
        | 56 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 57 | 
        
         | 
        
         | 
        	$section = $query_section->fetchRow();
  | 
      
      
        | 58 | 
        
         | 
        
         | 
        	// Include the modules delete file if it exists
  | 
      
      
        | 59 | 
        
         | 
        
         | 
        	if(file_exists(WB_PATH.'/modules/'.$section['module'].'/delete.php')) {
 | 
      
      
        | 60 | 
        
         | 
        
         | 
        		require(WB_PATH.'/modules/'.$section['module'].'/delete.php');
  | 
      
      
        | 61 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 62 | 
        
         | 
        
         | 
        	$database->query("DELETE FROM ".TABLE_PREFIX."sections WHERE section_id = '$section_id' LIMIT 1");
 | 
      
      
        | 63 | 
        
         | 
        
         | 
        	if($database->is_error()) {
 | 
      
      
        | 64 | 
        
         | 
        
         | 
        		$admin->print_error($database->get_error());
  | 
      
      
        | 65 | 
        
         | 
        
         | 
        	} else {
 | 
      
      
        | 66 | 
        
         | 
        
         | 
        		require(WB_PATH.'/framework/class.order.php');
  | 
      
      
        | 67 | 
        
         | 
        
         | 
        		$order = new order(TABLE_PREFIX.'sections', 'position', 'section_id', 'page_id');
  | 
      
      
        | 68 | 
        
         | 
        
         | 
        		$order->clean($page_id);
  | 
      
      
        | 69 | 
        
         | 
        
         | 
        		$admin->print_success($TEXT['SUCCESS'], ADMIN_URL.'/pages/sections.php?page_id='.$page_id);
  | 
      
      
        | 70 | 
        
         | 
        
         | 
        		$admin->print_footer();
  | 
      
      
        | 71 | 
        
         | 
        
         | 
        		exit();
  | 
      
      
        | 72 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 73 | 
        
         | 
        
         | 
        } elseif(isset($_POST['module']) AND $_POST['module'] != '') {
 | 
      
      
        | 74 | 
        
         | 
        
         | 
        	// Get section info
  | 
      
      
        | 75 | 
        
         | 
        
         | 
        	$module = $admin->add_slashes($_POST['module']);
  | 
      
      
        | 76 | 
        
         | 
        
         | 
        	// Include the ordering class
  | 
      
      
        | 77 | 
        
         | 
        
         | 
        	require(WB_PATH.'/framework/class.order.php');
  | 
      
      
        | 78 | 
        
         | 
        
         | 
        	// Get new order
  | 
      
      
        | 79 | 
        
         | 
        
         | 
        	$order = new order(TABLE_PREFIX.'sections', 'position', 'section_id', 'page_id');
  | 
      
      
        | 80 | 
        
         | 
        
         | 
        	$position = $order->get_new($page_id);
  | 
      
      
        | 81 | 
        
         | 
        
         | 
        	// Insert module into DB
  | 
      
      
        | 82 | 
        
         | 
        
         | 
        	$database->query("INSERT INTO ".TABLE_PREFIX."sections (page_id,module,position,block) VALUES ('$page_id','$module','$position','1')");
 | 
      
      
        | 83 | 
        
         | 
        
         | 
        	// Get the section id
  | 
      
      
        | 84 | 
        
         | 
        
         | 
        	$section_id = $database->get_one("SELECT LAST_INSERT_ID()");
 | 
      
      
        | 85 | 
        
         | 
        
         | 
        	// Include the selected modules add file if it exists
  | 
      
      
        | 86 | 
        
         | 
        
         | 
        	if(file_exists(WB_PATH.'/modules/'.$module.'/add.php')) {
 | 
      
      
        | 87 | 
        
         | 
        
         | 
        		require(WB_PATH.'/modules/'.$module.'/add.php');
  | 
      
      
        | 88 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 89 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 90 | 
        
         | 
        
         | 
        
  | 
      
      
        | 91 | 
        
         | 
        
         | 
        // Get perms
  | 
      
      
        | 92 | 
        
         | 
        
         | 
        $database = new database();
  | 
      
      
        | 93 | 
        
         | 
        
         | 
        $results = $database->query("SELECT admin_groups,admin_users FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'");
 | 
      
      
        | 94 | 
        
         | 
        
         | 
        $results_array = $results->fetchRow();
  | 
      
      
        | 95 | 
        
         | 
        
         | 
        $old_admin_groups = explode(',', $results_array['admin_groups']);
 | 
      
      
        | 96 | 
        
         | 
        
         | 
        $old_admin_users = explode(',', $results_array['admin_users']);
 | 
      
      
        | 97 | 
        
         | 
        
         | 
        $in_old_group = FALSE;
  | 
      
      
        | 98 | 
        
         | 
        
         | 
        foreach($admin->get_groups_id() as $cur_gid){
 | 
      
      
        | 99 | 
        
         | 
        
         | 
        	if (in_array($cur_gid, $old_admin_groups)) {
 | 
      
      
        | 100 | 
        
         | 
        
         | 
        		$in_old_group = TRUE;
  | 
      
      
        | 101 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 102 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 103 | 
        
         | 
        
         | 
        if((!$in_old_group) AND !is_numeric(array_search($admin->get_user_id(), $old_admin_users))) {
 | 
      
      
        | 104 | 
        
         | 
        
         | 
        	$admin->print_error($MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS']);
  | 
      
      
        | 105 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 106 | 
        
         | 
        
         | 
        
  | 
      
      
        | 107 | 
        
         | 
        
         | 
        // Get page details
  | 
      
      
        | 108 | 
        
         | 
        
         | 
        $database = new database();
  | 
      
      
        | 109 | 
        
         | 
        
         | 
        $query = "SELECT * FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'";
  | 
      
      
        | 110 | 
        
         | 
        
         | 
        $results = $database->query($query);
  | 
      
      
        | 111 | 
        
         | 
        
         | 
        if($database->is_error()) {
 | 
      
      
        | 112 | 
        
         | 
        
         | 
        	$admin->print_header();
  | 
      
      
        | 113 | 
        
         | 
        
         | 
        	$admin->print_error($database->get_error());
  | 
      
      
        | 114 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 115 | 
        
         | 
        
         | 
        if($results->numRows() == 0) {
 | 
      
      
        | 116 | 
        
         | 
        
         | 
        	$admin->print_header();
  | 
      
      
        | 117 | 
        
         | 
        
         | 
        	$admin->print_error($MESSAGE['PAGES']['NOT_FOUND']);
  | 
      
      
        | 118 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 119 | 
        
         | 
        
         | 
        $results_array = $results->fetchRow();
  | 
      
      
        | 120 | 
        
         | 
        
         | 
        
  | 
      
      
        | 121 | 
        
         | 
        
         | 
        // Set module permissions
  | 
      
      
        | 122 | 
        
         | 
        
         | 
        $module_permissions = $_SESSION['MODULE_PERMISSIONS'];
  | 
      
      
        | 123 | 
        
         | 
        
         | 
        
  | 
      
      
        | 124 | 
        
         | 
        
         | 
        // Unset block var
  | 
      
      
        | 125 | 
        
         | 
        
         | 
        unset($block);
  | 
      
      
        | 126 | 
        
         | 
        
         | 
        // Include template info file (if it exists)
  | 
      
      
        | 127 | 
        
         | 
        
         | 
        if($results_array['template'] != '') {
 | 
      
      
        | 128 | 
        
         | 
        
         | 
        	$template_location = WB_PATH.'/templates/'.$results_array['template'].'/info.php';
  | 
      
      
        | 129 | 
        
         | 
        
         | 
        } else {
 | 
      
      
        | 130 | 
        
         | 
        
         | 
        	$template_location = WB_PATH.'/templates/'.DEFAULT_TEMPLATE.'/info.php';
  | 
      
      
        | 131 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 132 | 
        
         | 
        
         | 
        if(file_exists($template_location)) {
 | 
      
      
        | 133 | 
        
         | 
        
         | 
        	require($template_location);
  | 
      
      
        | 134 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 135 | 
        
         | 
        
         | 
        // Check if $menu is set
  | 
      
      
        | 136 | 
        
         | 
        
         | 
        if(!isset($block[1]) OR $block[1] == '') {
 | 
      
      
        | 137 | 
        
         | 
        
         | 
        	// Make our own menu list
  | 
      
      
        | 138 | 
        
         | 
        
         | 
        	$block[1] = $TEXT['MAIN'];
  | 
      
      
        | 139 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 140 | 
        
         | 
        
         | 
        
  | 
      
      
        | 141 | 
        
         | 
        
         | 
        /*-- load css files with jquery --*/
  | 
      
      
        | 142 | 
        
         | 
        
         | 
        // include jscalendar-setup
  | 
      
      
        | 143 | 
        
         | 
        
         | 
        $jscal_use_time = true; // whether to use a clock, too
  | 
      
      
        | 144 | 
        
         | 
        
         | 
        require_once(WB_PATH."/include/jscalendar/wb-setup.php");
  | 
      
      
        | 145 | 
        
         | 
        
         | 
        
  | 
      
      
        | 146 | 
        
         | 
        
         | 
        // Setup template object
  | 
      
      
        | 147 | 
        
         | 
        
         | 
        $template = new Template(THEME_PATH.'/templates');
  | 
      
      
        | 148 | 
        
         | 
        
         | 
        $template->set_file('page', 'pages_sections.htt');
 | 
      
      
        | 149 | 
        
         | 
        
         | 
        $template->set_block('page', 'main_block', 'main');
 | 
      
      
        | 150 | 
        
         | 
        
         | 
        $template->set_block('main_block', 'module_block', 'module_list');
 | 
      
      
        | 151 | 
        
         | 
        
         | 
        $template->set_block('main_block', 'section_block', 'section_list');
 | 
      
      
        | 152 | 
        
         | 
        
         | 
        $template->set_block('section_block', 'block_block', 'block_list');
 | 
      
      
        | 153 | 
        
         | 
        
         | 
        $template->set_block('main_block', 'calendar_block', 'calendar_list');
 | 
      
      
        | 154 | 
        
         | 
        
         | 
        
  | 
      
      
        | 155 | 
        
         | 
        
         | 
        // set first defaults and messages
  | 
      
      
        | 156 | 
        
         | 
        
         | 
        $template->set_var(array(
  | 
      
      
        | 157 | 
        
         | 
        
         | 
        				'PAGE_ID' => $results_array['page_id'],
  | 
      
      
        | 158 | 
        
         | 
        
         | 
        				'PAGE_TITLE' => ($results_array['page_title']),
  | 
      
      
        | 159 | 
        
         | 
        
         | 
        				'MENU_TITLE' => ($results_array['menu_title']),
  | 
      
      
        | 160 | 
        
         | 
        
         | 
        				'TEXT_CURRENT_PAGE' => $TEXT['CURRENT_PAGE'],
  | 
      
      
        | 161 | 
        
         | 
        
         | 
        				'HEADING_MANAGE_SECTIONS' => $HEADING['MANAGE_SECTIONS'],
  | 
      
      
        | 162 | 
        
         | 
        
         | 
        				'HEADING_MODIFY_PAGE' => $HEADING['MODIFY_PAGE'],
  | 
      
      
        | 163 | 
        
         | 
        
         | 
        				'TEXT_CHANGE_SETTINGS' => $TEXT['CHANGE_SETTINGS'],
  | 
      
      
        | 164 | 
        
         | 
        
         | 
        				'TEXT_ADD_SECTION' => $TEXT['ADD_SECTION'],
  | 
      
      
        | 165 | 
        
         | 
        
         | 
        				'TEXT_ID' => 'ID',
  | 
      
      
        | 166 | 
        
         | 
        
         | 
        				'TEXT_TYPE' => $TEXT['TYPE'],
  | 
      
      
        | 167 | 
        
         | 
        
         | 
        				'TEXT_BLOCK' => $TEXT['BLOCK'],
  | 
      
      
        | 168 | 
        
         | 
        
         | 
        				'TEXT_PUBL_START_DATE' => $TEXT{'PUBL_START_DATE'},
 | 
      
      
        | 169 | 
        
         | 
        
         | 
        				'TEXT_PUBL_END_DATE' => $TEXT['PUBL_END_DATE'],
  | 
      
      
        | 170 | 
        
         | 
        
         | 
        				'TEXT_ACTIONS' => $TEXT['ACTIONS'],
  | 
      
      
        | 171 | 
        
         | 
        
         | 
        				'ADMIN_URL' => ADMIN_URL,
  | 
      
      
        | 172 | 
        
         | 
        
         | 
        				'WB_URL' => WB_URL,
  | 
      
      
        | 173 | 
        
         | 
        
         | 
        				'WB_PATH' => WB_PATH,
  | 
      
      
        | 174 | 
        
         | 
        
         | 
        				'THEME_URL' => THEME_URL,
  | 
      
      
        | 175 | 
        
         | 
        
         | 
        			) );
  | 
      
      
        | 176 | 
        
         | 
        
         | 
        
  | 
      
      
        | 177 | 
        
         | 
        
         | 
        // Insert variables
  | 
      
      
        | 178 | 
        
         | 
        
         | 
        $template->set_var(array(
  | 
      
      
        | 179 | 
        
         | 
        
         | 
        				'VAR_PAGE_ID' => $results_array['page_id'],
  | 
      
      
        | 180 | 
        
         | 
        
         | 
        				'VAR_PAGE_TITLE' => $results_array['page_title'],
  | 
      
      
        | 181 | 
        
         | 
        
         | 
        				'SETTINGS_LINK' => ADMIN_URL.'/pages/settings.php?page_id='.$results_array['page_id'],
  | 
      
      
        | 182 | 
        
         | 
        
         | 
        				'MODIFY_LINK' => ADMIN_URL.'/pages/modify.php?page_id='.$results_array['page_id'],
  | 
      
      
        | 183 | 
        
         | 
        
         | 
        			) );
  | 
      
      
        | 184 | 
        
         | 
        
         | 
        
  | 
      
      
        | 185 | 
        
         | 
        
         | 
        $query_sections = $database->query("SELECT section_id,module,position,block,publ_start,publ_end FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' ORDER BY position ASC");
 | 
      
      
        | 186 | 
        
         | 
        
         | 
        if($query_sections->numRows() > 0) {
 | 
      
      
        | 187 | 
        
         | 
        
         | 
        	$num_sections = $query_sections->numRows();
  | 
      
      
        | 188 | 
        
         | 
        
         | 
        	while($section = $query_sections->fetchRow()) {
 | 
      
      
        | 189 | 
        
         | 
        
         | 
        		if(!is_numeric(array_search($section['module'], $module_permissions))) {
 | 
      
      
        | 190 | 
        
         | 
        
         | 
        			// Get the modules real name
  | 
      
      
        | 191 | 
        
         | 
        
         | 
        			$module_name=$database->get_one("SELECT name FROM ".TABLE_PREFIX."addons WHERE directory='".$section['module']."'");
 | 
      
      
        | 192 | 
        
         | 
        
         | 
        			$template->set_var(array(
  | 
      
      
        | 193 | 
        
         | 
        
         | 
        			) );
  | 
      
      
        | 194 | 
        
         | 
        
         | 
        			if(SECTION_BLOCKS) {
 | 
      
      
        | 195 | 
        
         | 
        
         | 
        				$edit_page ='<a name="'.$section['section_id'].'" href="'.ADMIN_URL.'/pages/modify.php?page_id='.$page_id.'#'.$section['section_id'].'">'.$module_name.'</a>';
  | 
      
      
        | 196 | 
        
         | 
        
         | 
        				$input_attribute = 'input_normal';
  | 
      
      
        | 197 | 
        
         | 
        
         | 
        				$template->set_var(array(
  | 
      
      
        | 198 | 
        
         | 
        
         | 
        						'STYLE_DISPLAY_SECTION_BLOCK' => ' style="visibility: visible;"',
  | 
      
      
        | 199 | 
        
         | 
        
         | 
        						'NAME_SIZE' => 180,
  | 
      
      
        | 200 | 
        
         | 
        
         | 
        						'INPUT_ATTRIBUTE' => $input_attribute,
  | 
      
      
        | 201 | 
        
         | 
        
         | 
        						'VAR_SECTION_ID' => $section['section_id'],
  | 
      
      
        | 202 | 
        
         | 
        
         | 
        						'VAR_POSITION' => $section['position'],
  | 
      
      
        | 203 | 
        
         | 
        
         | 
        						'LINK_MODIFY_URL_VAR_MODUL_NAME' => $edit_page,
  | 
      
      
        | 204 | 
        
            1050
         | 
        
            Ruebenwurz
         | 
        						'SELECT' => '',
  | 
      
      
        | 205 | 
        
         | 
        
         | 
        						'SET_NONE_DISPLAY_OPTION' => '',
  | 
      
      
        | 206 | 
        
            1009
         | 
        
            Ruebenwurz
         | 
        				) );
  | 
      
      
        | 207 | 
        
         | 
        
         | 
        				// Add block options to the section_list
  | 
      
      
        | 208 | 
        
         | 
        
         | 
        				$template->clear_var('block_list');
 | 
      
      
        | 209 | 
        
         | 
        
         | 
        				foreach($block AS $number => $name) {
 | 
      
      
        | 210 | 
        
         | 
        
         | 
        					$template->set_var('NAME', htmlentities(strip_tags($name)));
 | 
      
      
        | 211 | 
        
         | 
        
         | 
        					$template->set_var('VALUE', $number);
 | 
      
      
        | 212 | 
        
         | 
        
         | 
        					$template->set_var('SIZE', 1);
 | 
      
      
        | 213 | 
        
         | 
        
         | 
        					if($section['block'] == $number) {
 | 
      
      
        | 214 | 
        
         | 
        
         | 
        						$template->set_var('SELECTED', ' selected="selected"');
 | 
      
      
        | 215 | 
        
         | 
        
         | 
        					} else {
 | 
      
      
        | 216 | 
        
         | 
        
         | 
        						$template->set_var('SELECTED', '');
 | 
      
      
        | 217 | 
        
         | 
        
         | 
        					}
  | 
      
      
        | 218 | 
        
         | 
        
         | 
        					$template->parse('block_list', 'block_block', true);
 | 
      
      
        | 219 | 
        
         | 
        
         | 
        				}
  | 
      
      
        | 220 | 
        
         | 
        
         | 
        			} else {
 | 
      
      
        | 221 | 
        
            1065
         | 
        
            Ruebenwurz
         | 
        				$edit_page ='<a name="'.$section['section_id'].'" href="'.ADMIN_URL.'/pages/modify.php?page_id='.$page_id.'#'.$section['section_id'].'">'.$module_name.'</a>';
  | 
      
      
        | 222 | 
        
            1009
         | 
        
            Ruebenwurz
         | 
        				$input_attribute = 'input_small';
  | 
      
      
        | 223 | 
        
         | 
        
         | 
        				$template->set_var(array(
  | 
      
      
        | 224 | 
        
            1048
         | 
        
            Ruebenwurz
         | 
        						'STYLE_DISPLAY_SECTION_BLOCK' => ' style="visibility: hidden;"',
  | 
      
      
        | 225 | 
        
            1009
         | 
        
            Ruebenwurz
         | 
        						'NAME_SIZE' => 270,
  | 
      
      
        | 226 | 
        
         | 
        
         | 
        						'INPUT_ATTRIBUTE' => $input_attribute,
  | 
      
      
        | 227 | 
        
         | 
        
         | 
        						'VAR_SECTION_ID' => $section['section_id'],
  | 
      
      
        | 228 | 
        
         | 
        
         | 
        						'VAR_POSITION' => $section['position'],
  | 
      
      
        | 229 | 
        
         | 
        
         | 
        						'LINK_MODIFY_URL_VAR_MODUL_NAME' => $edit_page,
  | 
      
      
        | 230 | 
        
            1050
         | 
        
            Ruebenwurz
         | 
        						'SET_NONE_DISPLAY_OPTION' => '<option> </option>',
  | 
      
      
        | 231 | 
        
            1009
         | 
        
            Ruebenwurz
         | 
        					) );
  | 
      
      
        | 232 | 
        
         | 
        
         | 
        			}
  | 
      
      
        | 233 | 
        
         | 
        
         | 
        			// Insert icon and images
  | 
      
      
        | 234 | 
        
         | 
        
         | 
        			$template->set_var(array(
  | 
      
      
        | 235 | 
        
         | 
        
         | 
        						'CLOCK_16_PNG' => 'clock_16.png',
  | 
      
      
        | 236 | 
        
         | 
        
         | 
        						'CLOCK_DEL_16_PNG' => 'clock_del_16.png',
  | 
      
      
        | 237 | 
        
         | 
        
         | 
        						'DELETE_16_PNG' => 'delete_16.png',
  | 
      
      
        | 238 | 
        
         | 
        
         | 
        					) );
  | 
      
      
        | 239 | 
        
         | 
        
         | 
        			// set calendar start values
  | 
      
      
        | 240 | 
        
         | 
        
         | 
        			if($section['publ_start']==0) {
 | 
      
      
        | 241 | 
        
         | 
        
         | 
        				$template->set_var('VALUE_PUBL_START', '');
 | 
      
      
        | 242 | 
        
         | 
        
         | 
        			} else {
 | 
      
      
        | 243 | 
        
         | 
        
         | 
        				$template->set_var('VALUE_PUBL_START', date($jscal_format, $section['publ_start']));
 | 
      
      
        | 244 | 
        
         | 
        
         | 
        			}
  | 
      
      
        | 245 | 
        
         | 
        
         | 
        			// set calendar start values
  | 
      
      
        | 246 | 
        
         | 
        
         | 
        			if($section['publ_end']==0) {
 | 
      
      
        | 247 | 
        
         | 
        
         | 
        				$template->set_var('VALUE_PUBL_END', '');
 | 
      
      
        | 248 | 
        
         | 
        
         | 
        			} else {
 | 
      
      
        | 249 | 
        
         | 
        
         | 
        				$template->set_var('VALUE_PUBL_END', date($jscal_format, $section['publ_end']));
 | 
      
      
        | 250 | 
        
         | 
        
         | 
        			}
  | 
      
      
        | 251 | 
        
         | 
        
         | 
        			// Insert icons up and down
  | 
      
      
        | 252 | 
        
         | 
        
         | 
        			if($section['position'] != 1 ) {
 | 
      
      
        | 253 | 
        
         | 
        
         | 
        				$template->set_var(
  | 
      
      
        | 254 | 
        
         | 
        
         | 
        							'VAR_MOVE_UP_URL',
  | 
      
      
        | 255 | 
        
         | 
        
         | 
        							'<a href="'.ADMIN_URL.'/pages/move_up.php?page_id='.$page_id.'&section_id='.$section['section_id'].'">
  | 
      
      
        | 256 | 
        
         | 
        
         | 
        							<img src="'.THEME_URL.'/images/up_16.png" alt="^" />
  | 
      
      
        | 257 | 
        
         | 
        
         | 
        							</a>' );
  | 
      
      
        | 258 | 
        
         | 
        
         | 
        			} else {
 | 
      
      
        | 259 | 
        
         | 
        
         | 
        				$template->set_var(array(
  | 
      
      
        | 260 | 
        
         | 
        
         | 
        							'VAR_MOVE_UP_URL' => '',
  | 
      
      
        | 261 | 
        
         | 
        
         | 
        						) );
  | 
      
      
        | 262 | 
        
         | 
        
         | 
        			}
  | 
      
      
        | 263 | 
        
         | 
        
         | 
        			if($section['position'] != $num_sections ) {
 | 
      
      
        | 264 | 
        
         | 
        
         | 
        				$template->set_var(
  | 
      
      
        | 265 | 
        
         | 
        
         | 
        							'VAR_MOVE_DOWN_URL',
  | 
      
      
        | 266 | 
        
         | 
        
         | 
        							'<a href="'.ADMIN_URL.'/pages/move_down.php?page_id='.$page_id.'&section_id='.$section['section_id'].'">
  | 
      
      
        | 267 | 
        
         | 
        
         | 
        							<img src="'.THEME_URL.'/images/down_16.png" alt="v" />
  | 
      
      
        | 268 | 
        
         | 
        
         | 
        							</a>' );
  | 
      
      
        | 269 | 
        
         | 
        
         | 
        			} else {
 | 
      
      
        | 270 | 
        
         | 
        
         | 
        				$template->set_var(array(
  | 
      
      
        | 271 | 
        
         | 
        
         | 
        							'VAR_MOVE_DOWN_URL' => '',
  | 
      
      
        | 272 | 
        
         | 
        
         | 
        						) );
  | 
      
      
        | 273 | 
        
         | 
        
         | 
        			}
  | 
      
      
        | 274 | 
        
         | 
        
         | 
        		}
  | 
      
      
        | 275 | 
        
            1048
         | 
        
            Ruebenwurz
         | 
        			$template->set_var(array(
  | 
      
      
        | 276 | 
        
         | 
        
         | 
        							'DISPLAY_DEBUG' => ' style="visibility="visible;"',
  | 
      
      
        | 277 | 
        
         | 
        
         | 
        							'TEXT_SID' => 'SID',
  | 
      
      
        | 278 | 
        
         | 
        
         | 
        							'DEBUG_COLSPAN_SIZE' => 9,
  | 
      
      
        | 279 | 
        
         | 
        
         | 
        						) );
  | 
      
      
        | 280 | 
        
            1009
         | 
        
            Ruebenwurz
         | 
        		if($debug) {
 | 
      
      
        | 281 | 
        
         | 
        
         | 
        			$template->set_var(array(
  | 
      
      
        | 282 | 
        
         | 
        
         | 
        							'DISPLAY_DEBUG' => ' style="visibility="visible;"',
  | 
      
      
        | 283 | 
        
         | 
        
         | 
        							'TEXT_PID' => 'PID',
  | 
      
      
        | 284 | 
        
         | 
        
         | 
        							'TEXT_SID' => 'SID',
  | 
      
      
        | 285 | 
        
         | 
        
         | 
        							'POSITION' => $section['position'],
  | 
      
      
        | 286 | 
        
         | 
        
         | 
        						) );
  | 
      
      
        | 287 | 
        
         | 
        
         | 
        		} else {
 | 
      
      
        | 288 | 
        
         | 
        
         | 
        			$template->set_var(array(
  | 
      
      
        | 289 | 
        
            1050
         | 
        
            Ruebenwurz
         | 
        							'DISPLAY_DEBUG' => ' style="display:none;"',
  | 
      
      
        | 290 | 
        
            1009
         | 
        
            Ruebenwurz
         | 
        							'TEXT_PID' => '',
  | 
      
      
        | 291 | 
        
         | 
        
         | 
        							'POSITION' => '',
  | 
      
      
        | 292 | 
        
         | 
        
         | 
        						) );
  | 
      
      
        | 293 | 
        
         | 
        
         | 
        		}
  | 
      
      
        | 294 | 
        
         | 
        
         | 
        		$template->parse('section_list', 'section_block', true);
 | 
      
      
        | 295 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 296 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 297 | 
        
         | 
        
         | 
        
  | 
      
      
        | 298 | 
        
         | 
        
         | 
        // now add the calendars -- remember to to set the range to [1970, 2037] if the date is used as timestamp!
  | 
      
      
        | 299 | 
        
         | 
        
         | 
        // the loop is simply a copy from above.
  | 
      
      
        | 300 | 
        
         | 
        
         | 
        $query_sections = $database->query("SELECT section_id,module FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' ORDER BY position ASC");
 | 
      
      
        | 301 | 
        
         | 
        
         | 
        if($query_sections->numRows() > 0) {
 | 
      
      
        | 302 | 
        
         | 
        
         | 
        	$num_sections = $query_sections->numRows();
  | 
      
      
        | 303 | 
        
         | 
        
         | 
        	while($section = $query_sections->fetchRow()) {
 | 
      
      
        | 304 | 
        
         | 
        
         | 
        		// Get the modules real name
  | 
      
      
        | 305 | 
        
         | 
        
         | 
        		$module_name=$database->get_one("SELECT name FROM ".TABLE_PREFIX."addons WHERE directory='".$section['module']."'");
 | 
      
      
        | 306 | 
        
         | 
        
         | 
        		if(!is_numeric(array_search($section['module'], $module_permissions))) {
 | 
      
      
        | 307 | 
        
         | 
        
         | 
        			$template->set_var(array(
  | 
      
      
        | 308 | 
        
         | 
        
         | 
        						'jscal_ifformat' => $jscal_ifformat,
  | 
      
      
        | 309 | 
        
         | 
        
         | 
        						'jscal_firstday' => $jscal_firstday,
  | 
      
      
        | 310 | 
        
         | 
        
         | 
        						'jscal_today' => $jscal_today,
  | 
      
      
        | 311 | 
        
         | 
        
         | 
        						'start_date' => 'start_date'.$section['section_id'],
  | 
      
      
        | 312 | 
        
         | 
        
         | 
        						'end_date' => 'end_date'.$section['section_id'],
  | 
      
      
        | 313 | 
        
         | 
        
         | 
        						'trigger_start' => 'trigger_start'.$section['section_id'],
  | 
      
      
        | 314 | 
        
         | 
        
         | 
        						'trigger_end' => 'trigger_stop'.$section['section_id'],
  | 
      
      
        | 315 | 
        
         | 
        
         | 
        					) );
  | 
      
      
        | 316 | 
        
         | 
        
         | 
        			if(isset($jscal_use_time) && $jscal_use_time==TRUE) {
 | 
      
      
        | 317 | 
        
         | 
        
         | 
        				$template->set_var(array(
  | 
      
      
        | 318 | 
        
         | 
        
         | 
        						'showsTime' => "true",
  | 
      
      
        | 319 | 
        
         | 
        
         | 
        						'timeFormat' => "24",
  | 
      
      
        | 320 | 
        
         | 
        
         | 
        					) );
  | 
      
      
        | 321 | 
        
         | 
        
         | 
        			}  else {
 | 
      
      
        | 322 | 
        
         | 
        
         | 
        				$template->set_var(array(
  | 
      
      
        | 323 | 
        
         | 
        
         | 
        						'showsTime' => "false",
  | 
      
      
        | 324 | 
        
         | 
        
         | 
        						'timeFormat' => "24",
  | 
      
      
        | 325 | 
        
         | 
        
         | 
        					) );
  | 
      
      
        | 326 | 
        
         | 
        
         | 
        			}
  | 
      
      
        | 327 | 
        
         | 
        
         | 
        		}
  | 
      
      
        | 328 | 
        
         | 
        
         | 
        		$template->parse('calendar_list', 'calendar_block', true);
 | 
      
      
        | 329 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 330 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 331 | 
        
         | 
        
         | 
        
  | 
      
      
        | 332 | 
        
         | 
        
         | 
        // Work-out if we should show the "Add Section" form
  | 
      
      
        | 333 | 
        
         | 
        
         | 
        $query_sections = $database->query("SELECT section_id FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' AND module = 'menu_link'");
 | 
      
      
        | 334 | 
        
         | 
        
         | 
        if($query_sections->numRows() == 0) {
 | 
      
      
        | 335 | 
        
         | 
        
         | 
        	// Modules list
  | 
      
      
        | 336 | 
        
         | 
        
         | 
        	$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'page' AND directory != 'menu_link' order by name");
 | 
      
      
        | 337 | 
        
         | 
        
         | 
        	if($result->numRows() > 0) {
 | 
      
      
        | 338 | 
        
         | 
        
         | 
        		while ($module = $result->fetchRow()) {
 | 
      
      
        | 339 | 
        
         | 
        
         | 
        			// Check if user is allowed to use this module   echo  $module['directory'],'<br />';
  | 
      
      
        | 340 | 
        
         | 
        
         | 
        			if(!is_numeric(array_search($module['directory'], $module_permissions))) {
 | 
      
      
        | 341 | 
        
         | 
        
         | 
        				$template->set_var('VALUE', $module['directory']);
 | 
      
      
        | 342 | 
        
         | 
        
         | 
        				$template->set_var('NAME', $module['name']);
 | 
      
      
        | 343 | 
        
         | 
        
         | 
        				if($module['directory'] == 'wysiwyg') {
 | 
      
      
        | 344 | 
        
         | 
        
         | 
        					$template->set_var('SELECTED', ' selected="selected"');
 | 
      
      
        | 345 | 
        
         | 
        
         | 
        				} else {
 | 
      
      
        | 346 | 
        
         | 
        
         | 
        					$template->set_var('SELECTED', '');
 | 
      
      
        | 347 | 
        
         | 
        
         | 
        				}
  | 
      
      
        | 348 | 
        
         | 
        
         | 
        				$template->parse('module_list', 'module_block', true);
 | 
      
      
        | 349 | 
        
         | 
        
         | 
        			}
  | 
      
      
        | 350 | 
        
         | 
        
         | 
        		}
  | 
      
      
        | 351 | 
        
         | 
        
         | 
        	}
  | 
      
      
        | 352 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 353 | 
        
         | 
        
         | 
        // Insert language text and messages
  | 
      
      
        | 354 | 
        
         | 
        
         | 
        $template->set_var(array(
  | 
      
      
        | 355 | 
        
         | 
        
         | 
        					'TEXT_MANAGE_SECTIONS' => $HEADING['MANAGE_SECTIONS'],
  | 
      
      
        | 356 | 
        
         | 
        
         | 
        					'TEXT_ARE_YOU_SURE' => $TEXT['ARE_YOU_SURE'],
  | 
      
      
        | 357 | 
        
         | 
        
         | 
        					'TEXT_TYPE' => $TEXT['TYPE'],
  | 
      
      
        | 358 | 
        
         | 
        
         | 
        					'TEXT_ADD' => $TEXT['ADD'],
  | 
      
      
        | 359 | 
        
         | 
        
         | 
        					'TEXT_SAVE' =>  $TEXT['SAVE'],
  | 
      
      
        | 360 | 
        
         | 
        
         | 
        					'TEXTLINK_MODIFY_PAGE' => $HEADING['MODIFY_PAGE'],
  | 
      
      
        | 361 | 
        
         | 
        
         | 
        					'TEXT_CALENDAR' => $TEXT['CALENDAR'],
  | 
      
      
        | 362 | 
        
         | 
        
         | 
        					'TEXT_DELETE_DATE' => $TEXT['DELETE_DATE'],
  | 
      
      
        | 363 | 
        
         | 
        
         | 
        					'TEXT_ADD_SECTION' => $TEXT['ADD_SECTION'],
  | 
      
      
        | 364 | 
        
         | 
        
         | 
        				) );
  | 
      
      
        | 365 | 
        
         | 
        
         | 
        $template->parse('main', 'main_block', false);
 | 
      
      
        | 366 | 
        
         | 
        
         | 
        $template->pparse('output', 'page');
 | 
      
      
        | 367 | 
        
         | 
        
         | 
        
  | 
      
      
        | 368 | 
        
         | 
        
         | 
        // Print admin footer
  | 
      
      
        | 369 | 
        
         | 
        
         | 
        $admin->print_footer();
  | 
      
      
        | 370 | 
        
         | 
        
         | 
        
  | 
      
      
        | 371 | 
        
         | 
        
         | 
        ?>
  |