diff options
author | vdigital <vdigital@piwigo.org> | 2008-05-23 21:05:41 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2008-05-23 21:05:41 +0000 |
commit | 77fd1f51a3c5f5a52f72ef8a299fe368228e2285 (patch) | |
tree | a67ede42904657ccf3349ecdaef1cec8b8e36ff8 /BSF/template/yoga/mail/text/html/admin | |
parent | 553727dffacc48e8337c1d141f2a25af359e74b1 (diff) |
git-svn-id: http://piwigo.org/svn/trunk@2357 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'BSF/template/yoga/mail/text/html/admin')
3 files changed, 96 insertions, 0 deletions
diff --git a/BSF/template/yoga/mail/text/html/admin/cat_group_info.tpl b/BSF/template/yoga/mail/text/html/admin/cat_group_info.tpl new file mode 100644 index 000000000..2c8c45d6a --- /dev/null +++ b/BSF/template/yoga/mail/text/html/admin/cat_group_info.tpl @@ -0,0 +1,9 @@ +{* $Id$ *} +<div id="cat_group_info"> +<h2>{'Informations'|@translate}</h2> +<p>{$IMG_URL}</p> +<p>{'Hello,'|@translate}</p> +<p>{'Come to discover the category:'|@translate} <a href="{$LINK}">{$CAT_NAME}</a></p> +<p>{$CPL_CONTENT}</p> +<p>{'See you soon.'|@translate}</p> +</div> diff --git a/BSF/template/yoga/mail/text/html/admin/index.php b/BSF/template/yoga/mail/text/html/admin/index.php new file mode 100644 index 000000000..c15b15795 --- /dev/null +++ b/BSF/template/yoga/mail/text/html/admin/index.php @@ -0,0 +1,30 @@ +<?php +// +-----------------------------------------------------------------------+ +// | Piwigo - a PHP based picture gallery | +// +-----------------------------------------------------------------------+ +// | Copyright(C) 2008 Piwigo Team http://piwigo.org | +// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | +// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | +// +-----------------------------------------------------------------------+ +// | This program is free software; you can redistribute it and/or modify | +// | it under the terms of the GNU General Public License as published by | +// | the Free Software Foundation | +// | | +// | This program is distributed in the hope that it will be useful, but | +// | WITHOUT ANY WARRANTY; without even the implied warranty of | +// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | +// | General Public License for more details. | +// | | +// | You should have received a copy of the GNU General Public License | +// | along with this program; if not, write to the Free Software | +// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | +// | USA. | +// +-----------------------------------------------------------------------+ + +// Recursive call +$url = '../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?> diff --git a/BSF/template/yoga/mail/text/html/admin/notification_by_mail.tpl b/BSF/template/yoga/mail/text/html/admin/notification_by_mail.tpl new file mode 100644 index 000000000..52627ebe4 --- /dev/null +++ b/BSF/template/yoga/mail/text/html/admin/notification_by_mail.tpl @@ -0,0 +1,57 @@ +{* $Id$ *} +<div id="nbm_message"> +<h2>{'Notification'|@translate}</h2> +<p>{'nbm_content_hello_1'|@translate}{$USERNAME}{'nbm_content_hello_2'|@translate}</p> + +{if isset($subscribe_by_admin)} +<p>{'nbm_content_subscribe_by_admin'|@translate}</p> +{/if} +{if isset($subscribe_by_himself)} +<p>{'nbm_content_subscribe_by_himself'|@translate}</p> +{/if} +{if isset($unsubscribe_by_admin)} +<p>{'nbm_content_unsubscribe_by_admin'|@translate}</p> +{/if} +{if isset($unsubscribe_by_himself)} +<p>{'nbm_content_unsubscribe_by_himself'|@translate}</p> +{/if} +{if isset($content_new_elements_single)} +<p>{'nbm_content_new_elements'|@translate}{'nbm_content_new_elements_single'|@translate}{$content_new_elements_single.DATE_SINGLE}.</p> +{/if} +{if isset($content_new_elements_between)} +<p>{'nbm_content_new_elements'|@translate}{'nbm_content_new_elements_between_1'|@translate}{$content_new_elements_between.DATE_BETWEEN_1}{'nbm_content_new_elements_between_2'|@translate}{$content_new_elements_between.DATE_BETWEEN_2}.</p> +{/if} + +{if not empty($global_new_lines)} +<ul id="nbm_new_line"> +{foreach from=$global_new_lines item=line} + <li>{$line}</li> +{/foreach} +</ul> +{/if} + +{if not empty($custom_mail_content)} +<p>{$custom_mail_content}</p> +{/if} + +{if not empty($GOTO_GALLERY_TITLE)} +<p>{'nbm_content_goto_1'|@translate}<a href="{$GOTO_GALLERY_URL}">{$GOTO_GALLERY_TITLE}</a>{'nbm_content_goto_2'|@translate}</p> +{/if} +<p>{'nbm_content_byebye'|@translate}</p> +<p style="text-align:center">{$SEND_AS_NAME}</p> +<p> +<br/><hr/> +{'nbm_content_unsubscribe_link'|@translate}{'nbm_content_click_on'|@translate}<a href="{$UNSUBSCRIBE_LINK}">{$UNSUBSCRIBE_LINK}</a><br/> +{'nbm_content_subscribe_link'|@translate}{'nbm_content_click_on'|@translate}<a href="{$SUBSCRIBE_LINK}">{$SUBSCRIBE_LINK}</a><br/> +{'nbm_content_problem_contact'|@translate}<a href="mailto:{$CONTACT_EMAIL}?subject={'nbm_content_pb_contact_object'|@translate}">{$CONTACT_EMAIL}</a><br/> +<hr/><br/> +</p> +{if not empty($recent_posts)} +</div> +<div id="nbm_recent_post"> + {foreach from=$recent_posts item=recent_post } + <h2>{$recent_post.TITLE}</h2> + {$recent_post.HTML_DATA} + {/foreach} +{/if} +</div> |