source: extensions/Piwecard/install/default_values.inc.php @ 20010

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

[piwecard] lots of improvements

  • Property svn:eol-style set to LF
File size: 2.4 KB
Line 
1<?php
2//Manage parameters
3$ecard_default_values['authorizations'] = 'selected_cats';                      //Determine the page from which the user can send ecard : 'all_cats' (all categories the user can access), 'selected_cats' (only the categories defined in the parameter 'selected_cats') or 'user_cats' (only the categories which are named like the user)
4$ecard_default_values['selected_cats'] = array();                                       //List of categories where the plugin is active
5$ecard_default_values['recursive'] = true;                                                      //Active recursivity to activate plugin on top categories ==> all the subcats are active
6
7//Params parameters
8$ecard_default_values['validity'] = array(0, 5, 10, 15);                        //Number of days a card is available
9$ecard_default_values['validity_default'] = 10;                                         //Default number of days a card is available
10$ecard_default_values['validity_choice'] = true;                                        //Add function for a user to choose the valid duration of an ecard
11$ecard_default_values['sender_copy'] = false;                                           //Send a copy to sender
12$ecard_default_values['sender_email_change'] = false;                           //Possibility for the user to change the sender email
13$ecard_default_values['email_format'] = array('text', 'html');          //Type of mail sent : 'text' or 'html' or both
14$ecard_default_values['email_format_default'] = array('text', 'html');          //Type of mail sent : 'text' or 'html' or both
15$ecard_default_values['show_image_infos'] = true;                                       //Default : show infos under the image in ecard
16$ecard_default_values['default_guest_email'] = '';                              //Default email used for guest user
17$ecard_default_values['email_subject'] = "Une eCard vous a ete envoyee par %yourname%"; //Subject of the email for plain text emails
18$ecard_default_values['email_text'] = 
19"Bonjour %recipientname% !
20%yourname% vous a envoy&eacute; une eCard depuis le site %website%.
21Vous pouvez la consulter sur %ecardurl% .
22A bientot sur %website% (%websiteurl% ) !
23Le Webmaster";
24$ecard_default_values['email_html'] =
25'Bonjour %recipientname% !
26<b>%yourname%</b> vous a envoy&eacute; une eCard depuis le site <a href="%websiteurl%">%website%</a> :
27<b>%ecardsubject%</b>
28<a href="%ecardurl%"><img class="theImage" src="%pictureurl%" /></a>
29%pictureinfos%
30<p>%ecardmessage%</p>
31Vous pouvez &eacute;galement consulter la carte virtuelle <a href="%ecardurl%">en cliquant sur le lien ici</a> .
32A bientot sur <a href="%websiteurl%">%website%</a> !
33Le Webmaster';
34
35//Consult parameters
36$ecard_default_values['nb_ecard_page'] = '10';                                          //Number of ecard per page listed in the admin page
37?>
Note: See TracBrowser for help on using the repository browser.