source: extensions/Flash_Gallery/admin/new.php @ 6769

Last change on this file since 6769 was 3531, checked in by tiico, 15 years ago

First revision (for testing)
Only in French (translation to be done)

File size: 576 bytes
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5// Affichages des modules à ajouter
6foreach($modules as $module)
7{
8        $template->append('add_module', array(
9    'MODULE' => $module['type'],
10    'NAME' => $module['name'],
11        'DESC' => $module['description'])
12        );
13}
14$template->assign('SCRIPT', '<script src="'.FLASHGAL_PATH .'js/screenshot.js" type="text/javascript"></script>');
15$template->set_filename('plugin_admin_content', dirname(__FILE__) . '/template/new.tpl');
16$template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content');
17?>
Note: See TracBrowser for help on using the repository browser.