1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 19:24:01 +02:00

[ticket/11103] Move all email templates to the email/ directory & prep short

Prepare short email templates (to be used in jabber)

PHPBB3-11103
This commit is contained in:
Nathaniel Guse
2012-11-11 11:37:14 -06:00
parent 84ba10ec8c
commit 985d234a29
25 changed files with 208 additions and 6 deletions

View File

@@ -131,6 +131,6 @@ class phpbb_notification_type_bookmark extends phpbb_notification_type_post
*/
public function get_email_template()
{
return 'notifications/bookmark';
return 'bookmark';
}
}

View File

@@ -132,6 +132,6 @@ class phpbb_notification_type_post_in_queue extends phpbb_notification_type_post
*/
public function get_email_template()
{
return 'notifications/post_in_queue';
return 'post_in_queue';
}
}

View File

@@ -200,7 +200,7 @@ class phpbb_notification_type_quote extends phpbb_notification_type_post
*/
public function get_email_template()
{
return 'notifications/quote';
return 'quote';
}
/**

View File

@@ -123,7 +123,7 @@ class phpbb_notification_type_report_pm extends phpbb_notification_type_pm
*/
public function get_email_template()
{
return 'notifications/report_pm';
return 'report_pm';
}
/**

View File

@@ -83,7 +83,7 @@ class phpbb_notification_type_report_post extends phpbb_notification_type_post_i
*/
public function get_email_template()
{
return 'notifications/report_post';
return 'report_post';
}
/**

View File

@@ -125,6 +125,6 @@ class phpbb_notification_type_topic_in_queue extends phpbb_notification_type_top
*/
public function get_email_template()
{
return 'notifications/topic_in_queue';
return 'topic_in_queue';
}
}