ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilMailTemplateGenericContext.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once 'Services/Mail/classes/class.ilMailTemplateContext.php';
5
11{
15 public function getId()
16 {
17 return 'mail_template_generic';
18 }
19
23 public function getTitle()
24 {
28 global $lng;
29
30 return $lng->txt('please_choose');
31 }
32
36 public function getDescription()
37 {
41 global $lng;
42
43 return $lng->txt('please_choose');
44 }
45
49 public function getSpecificPlaceholders()
50 {
51 return array();
52 }
53
57 public function resolveSpecificPlaceholder($placeholder_id, array $context_parameters, ilObjUser $recipient = null, $html_markup = false)
58 {
59 return '';
60 }
61}
Class ilMailTemplateContext.
getTitle()
Returns a translated title (depending on the current language) which is displayed in the user interfa...
getDescription()
Returns a translated description (depending on the current language) which is displayed in the user i...
resolveSpecificPlaceholder($placeholder_id, array $context_parameters, ilObjUser $recipient=null, $html_markup=false)
{string}
getId()
{Returns a unique (in the context of mail template contexts) id.string}
getSpecificPlaceholders()
{Return an array of placeholders.array}
global $lng
Definition: privfeed.php:40