Lines Matching refs:issue

413         foreach ($issues as $issue)
415 if(($issue['project'] !== $project) && ($this->getConf('multi_projects')==0)) {
418 …oductfilter,'ALL')===0) || (stristr($productfilter,$this->_get_one_value($issue,'product'))!= fals…
419 { $status = trim($this->_get_one_value($issue,'status'));
601 $issue = $issues[$i];
603 $a_status = strtolower($this->_get_one_value($issue,'status'));
604 $a_severity = strtolower($this->_get_one_value($issue,'severity'));
605 $a_product = strtoupper($this->_get_one_value($issue,'product'));
606 $a_version = strtoupper($this->_get_one_value($issue,'version'));
607 $a_component = strtoupper($this->_get_one_value($issue,'component'));
608 $a_tblock = strtoupper($this->_get_one_value($issue,'tblock'));
609 $a_assignee = strtoupper($this->_get_one_value($issue,'assignee'));
610 $a_reporter = strtoupper($this->_get_one_value($issue,'user_name'));
619 … (($data['myissues'] == false ) || ($this->_find_myissues($issue, $user_grp) == true)))
640 $it_issue_username = $this->_get_one_value($issue,'user_name');
641 $a_project = $this->_get_one_value($issue,'project');
647 …ng = sprintf("showid=%s&project=%s", urlencode($this->_get_one_value($issue,'id')), urlencode(…
648 …elink&'.$pstring.'" title="'.$this->_get_one_value($issue,'title').'">'.$this->_get_one_value($iss…
654 …$body .= '<tr id = "'.$a_project.' '.$this->_get_one_value($issue,'id').'" class="'.$rowEven.'" >'…
656 … '<td class="itl__td_standard">'.$this->_get_one_value($issue,'id').'</td>'.NL.
657 …_date">'.date($this->getConf('d_format'),strtotime($this->_get_one_value($issue,'created'))).'</td…
658 … '<td class="itl__td_standard">'.$this->_get_one_value($issue,'product').'</td>'.NL.
659 … '<td class="itl__td_standard">'.$this->_get_one_value($issue,'version').'</td>'.NL.
662 …lass="canbreak itl__td_standard"><a href="mailto:'.$this->_get_one_value($issue,'user_mail').'">'.…
666 … $a_display = $this->_get_assignee($issue,'assigned');
667 …lass="canbreak itl__td_standard"><a href="mailto:'.$this->_get_one_value($issue,'assigned').'">'.$…
668 …ass="canbreak itl__td_standard">'.$this->xs_format($this->_get_one_value($issue,'resolution')).'</…
669 …_date">'.date($this->getConf('d_format'),strtotime($this->_get_one_value($issue,'modified'))).'</t…
708 $issue = $issues[$i];
709 $a_project = strtolower($this->_get_one_value($issue,'project'));
710 $a_status = strtolower($this->_get_one_value($issue,'status'));
711 $a_severity = strtolower($this->_get_one_value($issue,'severity'));
712 $a_product = strtoupper($this->_get_one_value($issue,'product'));
713 $a_version = strtoupper($this->_get_one_value($issue,'version'));
714 $a_component = strtoupper($this->_get_one_value($issue,'component'));
715 $a_tblock = strtoupper($this->_get_one_value($issue,'tblock'));
716 $a_assignee = strtoupper($this->_get_one_value($issue,'assignee'));
717 $a_reporter = strtoupper($this->_get_one_value($issue,'user_name'));
726 … (($data['myissues'] == false ) || ($this->_find_myissues($issue, $user_grp) == true)))
738 { $a_project = $this->_get_one_value($issue,'project');
743 …sues = $reduced_issues.'<tr id = "'.$a_project.' '.$this->_get_one_value($issue,'id').'" class="'.…
745 … '<td'.$style.$this->_get_one_value($issue,'id').'</td>'.NL;
748 $isval = $this->_get_one_value($issue,strtolower($config));
767 …ng = sprintf("showid=%s&amp;project=%s", urlencode($this->_get_one_value($issue,'id')), urlencode(…
772 …_date">'.date($this->getConf('d_format'),strtotime($this->_get_one_value($issue,'created'))).'</td…
775 …_date">'.date($this->getConf('d_format'),strtotime($this->_get_one_value($issue,'modified'))).'</t…
778 …ass="canbreak itl__td_standard">'.$this->xs_format($this->_get_one_value($issue,'resolution')).'</…
781 …ass="canbreak itl__td_standard">'.$this->xs_format($this->_get_one_value($issue,'description')).'<…
910 function _get_one_value($issue, $key) { argument
911 if (@array_key_exists($key,$issue))
912 return $issue[$key];
919 function _get_assignee($issue, $key) { argument
920 if(!$issue) return;
921 if (array_key_exists($key,$issue)) {
929 { if($usr['mail']==$issue[$key])
936 if(stripos("mail",$shw_assignee_as) !== false) return $issue[$key];
938 $b_display = explode("@",$issue[$key]);
945 function _emailForNewIssue($project,$issue,$email_to) argument
955 …bject=sprintf($this->getLang('issuenew_subject'),$issue['severity'], $project, $issue['product'],$
957 … $pstring = sprintf("showid=%s&project=%s", urlencode($issue['id']), urlencode($project));
961 $this->getLang('issuemod_title').$issue['title'].chr(10).
962 $this->getLang('issuemod_issueid').$issue['id'].chr(10).
963 $this->getLang('issuemod_product').$issue['product'].chr(10).
964 $this->getLang('issuemod_version').$issue['version'].chr(10).
965 $this->getLang('issuemod_severity').$issue['severity'].chr(10).
966 $this->getLang('issuemod_status').$issue['status'].chr(10).
967 $this->getLang('issuemod_creator').$issue['user_name'].chr(10).
968 $this->getLang('th_assigned').$issue['assigned'].chr(10).chr(10).
969 … $this->getLang('issuenew_descr').$this->xs_format($issue['description']).chr(10).chr(10).
974 …mplates')==1) $bodyhtml = $this->replace_bodyhtml($bodyhtml, $pstring, $project, $issue, $comment);
977 $cc=$issue['add_user_mail'];
1043 function replace_bodyhtml($bodyhtml, $pstring, $project, $issue, $comment) { argument
1048 $bodyhtml = str_ireplace("%%ID%%",$issue['id'],$bodyhtml);
1050 $bodyhtml = str_ireplace("%%TITEL%%",$issue['title'],$bodyhtml);
1052 $bodyhtml = str_ireplace("%%STATUS%%",$issue['status'],$bodyhtml);
1056 $bodyhtml = str_ireplace("%%PRODUCT%%",$issue['product'],$bodyhtml);
1058 $bodyhtml = str_ireplace("%%VERSION%%",$issue['version'],$bodyhtml);
1060 $bodyhtml = str_ireplace("%%SEVERITY%%",$issue['severity'],$bodyhtml);
1062 $bodyhtml = str_ireplace("%%CREATOR%%",$issue['user_name'],$bodyhtml);
1063 $bodyhtml = str_ireplace("%%CREATOR_MAIL%%",$issue['user_mail'],$bodyhtml);
1065 $bodyhtml = str_ireplace("%%ASSIGNED%%",$issue['assigned'],$bodyhtml);
1067 $bodyhtml = str_ireplace("%%CREATED%%",$issue['created'],$bodyhtml);
1071 $frmt_res = str_ireplace(chr(10),"<br />",$issue['resolution']);
1079 …issuedescrmod_subject%%",sprintf($this->getLang('issuedescrmod_subject'),$issue['id'], $project),$…
1081 $frmt_descr = str_ireplace(chr(10),"<br />",$issue['description']);
1697 function _log_mods($project, $issue, $usr, $column, $new_value) argument
1898 function _find_myissues($issue, $user) { argument
1900 if($user['userinfo']['mail'] === $issue['user_mail']) return true;
1903 if($user['userinfo']['mail'] === $issue['assigned']) return true;
1906 if(stristr($issue['add_user_mail'],$user['userinfo']['mail']) !== false) return true;