1 <?php declare(strict_types=1);
12 const ID =
'crs_context_tutor_manual';
20 public function getId() : string
34 $lng->loadLanguageModule(
'crs');
36 return $lng->txt(
'crs_mail_context_tutor_title');
48 $lng->loadLanguageModule(
'crs');
50 return $lng->txt(
'crs_mail_context_tutor_info');
66 $lng->loadLanguageModule(
'crs');
67 $lng->loadLanguageModule(
'trac');
70 include_once
'Services/Tracking/classes/class.ilObjUserTracking.php';
74 $placeholders = array();
77 $placeholders[
'crs_title'] = array(
78 'placeholder' =>
'COURSE_TITLE',
79 'label' =>
$lng->txt(
'crs_title')
82 $placeholders[
'crs_period_start'] = array(
83 'placeholder' =>
'COURSE_PERIOD_START',
84 'label' =>
$lng->txt(
'crs_period_start_mail_placeholder')
87 $placeholders[
'crs_period_end'] = array(
88 'placeholder' =>
'COURSE_PERIOD_END',
89 'label' =>
$lng->txt(
'crs_period_end_mail_placeholder')
92 $placeholders[
'crs_status'] = array(
93 'placeholder' =>
'COURSE_STATUS',
94 'label' =>
$lng->txt(
'trac_status')
97 $placeholders[
'crs_mark'] = array(
98 'placeholder' =>
'COURSE_MARK',
99 'label' =>
$lng->txt(
'trac_mark')
103 $placeholders[
'crs_time_spent'] = array(
104 'placeholder' =>
'COURSE_TIME_SPENT',
105 'label' =>
$lng->txt(
'trac_spent_seconds')
110 $placeholders[
'crs_first_access'] = array(
111 'placeholder' =>
'COURSE_FIRST_ACCESS',
112 'label' =>
$lng->txt(
'trac_first_access')
115 $placeholders[
'crs_last_access'] = array(
116 'placeholder' =>
'COURSE_LAST_ACCESS',
117 'label' =>
$lng->txt(
'trac_last_access')
122 $placeholders[
'crs_link'] = array(
123 'placeholder' =>
'COURSE_LINK',
124 'label' =>
$lng->txt(
'crs_mail_permanent_link')
127 return $placeholders;
136 if (!array_key_exists($objId, self::$periodInfoByObjIdCache)) {
140 return self::$periodInfoByObjIdCache[
$objId];
147 string $placeholder_id,
148 array $context_parameters,
150 bool $html_markup =
false 157 $ilObjDataCache = $DIC[
'ilObjDataCache'];
159 if (!in_array($placeholder_id, array(
173 $obj_id = $ilObjDataCache->lookupObjId($context_parameters[
'ref_id']);
180 switch ($placeholder_id) {
182 return $ilObjDataCache->lookupTitle($obj_id);
184 case 'crs_period_start':
185 $periodInfo = $this->
getCachedPeriodByObjId((
int) $ilObjDataCache->lookupObjId($context_parameters[
'ref_id']));
192 return $formattedDate;
197 case 'crs_period_end':
198 $periodInfo = $this->
getCachedPeriodByObjId((
int) $ilObjDataCache->lookupObjId($context_parameters[
'ref_id']));
205 return $formattedDate;
214 if ($recipient === null) {
225 if ($recipient === null) {
230 return (is_string($mark) && strlen(trim($mark))) ? $mark :
'-';
232 case 'crs_time_spent':
233 if ($recipient === null) {
239 if (isset($progress[
'spent_seconds'])) {
241 $progress[
'spent_seconds'],
249 case 'crs_first_access':
250 if ($recipient === null) {
256 if (isset($progress[
'access_time_min'])) {
258 $progress[
'access_time_min'],
265 case 'crs_last_access':
266 if ($recipient === null) {
272 if (isset($progress[
'access_time'])) {
static lookupPeriodInfo($a_obj_id)
Lookup course period info.
const EXTENDED_DATA_LAST_ACCESS
static _getStatusText($a_status, $a_lng=null)
Get status alt text.
getCachedPeriodByObjId(int $objId)
resolveSpecificPlaceholder(string $placeholder_id, array $context_parameters, ilObjUser $recipient=null, bool $html_markup=false)
getSpecificPlaceholders()
Return an array of placeholders.
static setUseRelativeDates($a_status)
set use relative dates
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static useRelativeDates()
check if relative dates are used
static secondsToString($seconds, $force_with_seconds=false, $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
Class ilMailTemplateContext.
const EXTENDED_DATA_SPENT_SECONDS
const LP_STATUS_NOT_ATTEMPTED_NUM
static $periodInfoByObjIdCache
static _lookupMark($a_usr_id, $a_obj_id)
static _getProgress($a_user_id, $a_obj_id)
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
static _lookupStatus($a_obj_id, $a_user_id, $a_create=true)
Lookup status.