source: extensions/Piwecard/include/config_param.inc.php @ 19732

Last change on this file since 19732 was 19732, checked in by julien1311, 11 years ago

Compatible 2.4 mais pas encore top...

  • Property svn:eol-style set to native
File size: 938 bytes
Line 
1<?php
2
3global $conf;
4set_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'               => DerivativeImage::thumb_url($image_element) ,
18                '%imginfos'             => isset($image_element['imginfos']) ? $image_element['imginfos'] : ''  ,
19                );
20
21unset_make_full_url();
22                               
23?>
Note: See TracBrowser for help on using the repository browser.