source: extensions/PWG_Stuffs/admin/new.php @ 3569

Last change on this file since 3569 was 3300, checked in by patdenice, 15 years ago

New extension added:
PWG Stuffs (2.0.o)

File size: 461 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->set_filename('plugin_admin_content', dirname(__FILE__) . '/template/new.tpl');
15$template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content');
16?>
Note: See TracBrowser for help on using the repository browser.