Lines Matching refs:get

6         <?php if ($tpl->param('action') == '' && $tpl->get('thread')->user_is_coordinator() && $tpl->get('thread')->can_add_tasks()): ?>
8 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'task_add') ?>#z_" class="bez_subscribe_button">
9 <span class="bez_awesome">&#xf0fe;</span>&nbsp;&nbsp;<?php echo $tpl->getLang('correction_add' . $tpl->get('lang_suffix')) ?>
14 <?php foreach ($tpl->get('timeline') as $entity): ?>
37 <?php $tpl->set('task', $tpl->get('task_new')) ?>
39 <?php elseif ($tpl->get('thread')->state == 'closed'): ?>
45 '<strong>' . $tpl->user_name($tpl->get('thread')->closed_by) . '</strong>',
46 $tpl->date_fuzzy_age($tpl->get('thread')->close_date)) ?>
48 <?php elseif ($tpl->get('thread')->state == 'rejected'): ?>
54 '<strong>' . $tpl->user_name($tpl->get('thread')->closed_by) . '</strong>',
55 $tpl->date_fuzzy_age($tpl->get('thread')->close_date)) ?>
62 !(in_array($tpl->get('thread')->state, array('closed', 'rejected')) &&
63 $tpl->get('thread')->acl_of('state') < BEZ_PERMISSION_CHANGE)): ?>
68 <?php if ($tpl->get('thread')->count_opened_nopreventive_tasks() > 0): ?>
69 <div class="info"><?php echo $tpl->getLang('issue_unclosed_tasks' . $tpl->get('lang_suffix')) ?></div>
71 <?php if ($tpl->get('thread')->state == 'proposal'): ?>
72 <div class="info"><?php echo $tpl->getLang('issue_is_proposal' . $tpl->get('lang_suffix')) ?></div>
74 <?php if ($tpl->get('causes_without_tasks')): ?>
77 <?php if ($tpl->get('thread')->state == 'opened' && $tpl->get('thread')->task_count == 0): ?>
78 <div class="info"><?php echo $tpl->getLang('issue_no_tasks' . $tpl->get('lang_suffix')) ?></div>
89 <?php echo $tpl->datetime($tpl->get('thread')->last_activity_date) ?>
96 <?php if ($tpl->get('thread')->is_subscribent()): ?>
97 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'unsubscribe') ?>" class="bez_subscribe_button"><span class="bez_awesome">&#xf1f6;</span>&nbsp;&nbsp;<?php echo $tpl->getLang('unsubscribe') ?></a>
98 <p><?php echo $tpl->getLang('subscribed_info' . $tpl->get('lang_suffix')) ?></p>
100 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'subscribe') ?>" class="bez_subscribe_button"><span class="bez_awesome">&#xf0f3;</span>&nbsp;&nbsp;<?php echo $tpl->getLang('subscribe') ?></a>
101 <p><?php echo $tpl->getLang('not_subscribed_info' . $tpl->get('lang_suffix')) ?></p>
109 <?php foreach ($tpl->get('thread')->get_participants() as $participant): ?>
111 <?php if ($tpl->get('thread')->user_is_coordinator() &&
112 $tpl->get('thread')->can_add_participants() &&
114 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'participant_remove', 'user_id', $participant['user_id']) ?>"
122 '#'.$tpl->get('thread')->id.' '.$tpl->get('thread')->title,
123 $tpl->url('thread', 'id', $tpl->get('thread')->id)) ?>" title="<?php echo $participant['user_id'] ?>">
162 <?php if ( $tpl->get('thread')->user_is_coordinator() &&
163 $tpl->get('thread')->can_add_participants()): ?>
165 <form action="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'invite') ?>" method="post" id="bez_invite_users_form">
169 <?php foreach (array_diff_key($tpl->get('users'), $tpl->get('thread')->get_participants('subscribent')) as $user_id => $ignore): ?>