Last change
on this file since 18088 was
8771,
checked in by tiico, 14 years ago
|
First global commit for Piwecard plugin
|
-
Property svn:eol-style set to
native
|
File size:
924 bytes
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | global $conf; |
---|
4 | set_make_full_url(); |
---|
5 | |
---|
6 | // Fichier contenant les parametres du plugin (pour le parser) |
---|
7 | $ecard_parse = array( |
---|
8 | '%votrenom' => isset($_POST['votrenom']) ? $_POST['votrenom'] : '' , |
---|
9 | '%votremail' => isset($_POST['votremail']) ? $_POST['votremail'] : '' , |
---|
10 | '%sonnom' => isset($_POST['sonnom']) ? $_POST['sonnom'] : '' , |
---|
11 | '%sonmail' => isset($_POST['sonmail']) ? $_POST['sonmail'] : '' , |
---|
12 | '%site' => isset($conf['gallery_title']) ? $conf['gallery_title'] : '' , |
---|
13 | '%linksite' => get_absolute_root_url() , |
---|
14 | '%chemin' => isset($image_element['chemin']) ? $image_element['chemin'] : '' , |
---|
15 | '%sujet' => isset($_POST['sujet']) ? $_POST['sujet'] : '' , |
---|
16 | '%message' => isset($_POST['message']) ? $_POST['message'] : '' , |
---|
17 | '%imgurl' => get_image_url($image_element), |
---|
18 | '%imginfos' => isset($image_element['imginfos']) ? $image_element['imginfos'] : '' , |
---|
19 | ); |
---|
20 | |
---|
21 | unset_make_full_url(); |
---|
22 | |
---|
23 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.