source: extensions/rv_gmaps/trunk/admin/admin.php @ 9069

Last change on this file since 9069 was 3447, checked in by rvelices, 15 years ago
  • added RV Map & Earth extension
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 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
12$my_base_url = get_admin_plugin_menu_link(__FILE__);
13
14$tabsheet = new tabsheet();
15$tabsheet->add( 'config', 'Configuration', add_url_params( $my_base_url, array('tab'=>'config') ) );
16$tabsheet->add( 'edit', 'Edit', add_url_params( $my_base_url, array('tab'=>'edit') ) );
17$tabsheet->add( 'sync', 'Synchronize', add_url_params( $my_base_url, array('tab'=>'sync') ) );
18$tabsheet->select($page['tab']);
19
20$tabsheet->assign();
21
22$my_base_url = $tabsheet->sheets[ $page['tab'] ]['url'];
23$template->set_filename( 'tab_data', dirname(__FILE__).'/admin_'.$page['tab'].'.tpl' );
24include_once( dirname(__FILE__).'/admin_'.$page['tab'].'.php');
25$template->assign_var_from_handle( 'TAB_DATA', 'tab_data');
26$template->assign_var_from_handle( 'ADMIN_CONTENT', 'plugin_admin_content');
27
28if ( empty($conf['gmaps_api_key']) )
29  $page['infos'][] = 'Please define the Google maps api key';
30
31?>
Note: See TracBrowser for help on using the repository browser.