source: extensions/MyPiwiShop/admin/home.php @ 27743

Last change on this file since 27743 was 27743, checked in by Miklfe, 10 years ago

Version de lancement

File size: 445 bytes
Line 
1<?php
2defined('MPS_PATH') or die('Hacking attempt!');
3
4
5
6 $query='SELECT * FROM '.MPS_CONF_TABLE.';';
7    $result     = pwg_query($query);
8     while($row = pwg_db_fetch_assoc($result)){
9    $config = $row ;
10   }
11
12
13$template->assign(array(
14  'mps_conf'                    => $config,
15  'INTRO_CONTENT'               => load_language('intro.html', MPS_PATH, array('return'=>true)),
16  ));
17
18$template->set_filename('mps_content', realpath(MPS_PATH . 'admin/template/home.tpl'));
Note: See TracBrowser for help on using the repository browser.