source: extensions/edit_gmaps/admin/admin.php @ 6769

Last change on this file since 6769 was 4558, checked in by cljosse, 14 years ago

[Edit_gmaps] Fix Bug display in admin

File size: 1.0 KB
Line 
1<?php 
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
4
5$template->set_filename('plugin_admin_content', dirname(__FILE__).'/admin.tpl');
6
7if (!isset($_GET['tab']))
8  $page['tab'] = 'config';
9else
10  $page['tab'] = $_GET['tab'];
11  $page['tab'] =   'edit';
12$my_base_url = get_admin_plugin_menu_link(__FILE__);
13
14$tabsheet = new tabsheet();
15$tabsheet->add( 'edit', 'Edit', add_url_params( $my_base_url, array('tab'=>'edit') ) );
16$tabsheet->select($page['tab']);
17$tabsheet->assign();
18
19$my_base_url = $tabsheet->sheets[ $page['tab'] ]['url'];
20$template->set_filename( 'tab_data', dirname(__FILE__).'/admin_'.$page['tab'].'.tpl' );
21include_once( dirname(__FILE__).'/admin_'.$page['tab'].'.php');
22 
23$template->assign_var_from_handle( 'TAB_DATA', 'tab_data');
24$template->assign_var_from_handle( 'ADMIN_CONTENT', 'plugin_admin_content');
25
26if ( empty($conf['gmaps_api_key']) )
27  $page['infos'][] = 'Please define the Google maps api key';
28
29?>
Note: See TracBrowser for help on using the repository browser.