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

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

[piwecard] new improvements

  • Property svn:eol-style set to LF
File size: 2.3 KB
RevLine 
[19956]1<?php
[20010]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
[19956]5
[20010]6//Params parameters
[20013]7$ecard_default_values['validity'] = array('0', '5', '10', '15');        //Number of days a card is available
8$ecard_default_values['validity_default'] = '10';                                       //Default number of days a card is available
[20010]9$ecard_default_values['validity_choice'] = true;                                        //Add function for a user to choose the valid duration of an ecard
10$ecard_default_values['sender_copy'] = false;                                           //Send a copy to sender
11$ecard_default_values['sender_email_change'] = false;                           //Possibility for the user to change the sender email
12$ecard_default_values['email_format'] = array('text', 'html');          //Type of mail sent : 'text' or 'html' or both
[20013]13$ecard_default_values['email_format_default'] = 'html';                         //Default email format
[20010]14$ecard_default_values['show_image_infos'] = true;                                       //Default : show infos under the image in ecard
15$ecard_default_values['default_guest_email'] = '';                              //Default email used for guest user
16$ecard_default_values['email_subject'] = "Une eCard vous a ete envoyee par %yourname%"; //Subject of the email for plain text emails
[20013]17$ecard_default_values['email_message']['text'] = 
[19956]18"Bonjour %recipientname% !
[20013]19%yourname% vous a envoye une eCard depuis le site %website%.
20Vous pouvez la consulter sur %ecardurl%.
21A bientot sur %website% (%websiteurl%) !
[19956]22Le Webmaster";
[20013]23$ecard_default_values['email_message']['html'] =
[19956]24'Bonjour %recipientname% !
25<b>%yourname%</b> vous a envoy&eacute; une eCard depuis le site <a href="%websiteurl%">%website%</a> :
26<b>%ecardsubject%</b>
27<a href="%ecardurl%"><img class="theImage" src="%pictureurl%" /></a>
28%pictureinfos%
29<p>%ecardmessage%</p>
30Vous pouvez &eacute;galement consulter la carte virtuelle <a href="%ecardurl%">en cliquant sur le lien ici</a> .
31A bientot sur <a href="%websiteurl%">%website%</a> !
32Le Webmaster';
33
[20010]34//Consult parameters
35$ecard_default_values['nb_ecard_page'] = '10';                                          //Number of ecard per page listed in the admin page
[19956]36?>
Note: See TracBrowser for help on using the repository browser.