Lines Matching refs:str_ireplace
183 …$bodyhtml = str_ireplace("%%_see%%",DOKU_URL.'doku.php?id='.$currentID.'&do=showcaselink&'.$pstrin…
184 $bodyhtml = str_ireplace("%%issuemod_head%%",$lang['issuemod_head'],$bodyhtml);
185 $bodyhtml = str_ireplace("%%issuemod_intro%%",$lang['issuemod_intro'],$bodyhtml);
187 $bodyhtml = str_ireplace("%%issuemod_issueid%%",$lang['issuemod_issueid'],$bodyhtml);
188 $bodyhtml = str_ireplace("%%ID%%",$issue['id'],$bodyhtml);
189 $bodyhtml = str_ireplace("%%issuemod_title%%",$lang['issuemod_title'],$bodyhtml);
190 $bodyhtml = str_ireplace("%%TITEL%%",$issue['title'],$bodyhtml);
191 $bodyhtml = str_ireplace("%%issuemod_status%%",$lang['issuemod_status'],$bodyhtml);
192 $bodyhtml = str_ireplace("%%status%%",$issue['status'],$bodyhtml);
193 $bodyhtml = str_ireplace("%%th_project%%",$lang['th_project'],$bodyhtml);
194 $bodyhtml = str_ireplace("%%project%%",$project,$bodyhtml);
195 $bodyhtml = str_ireplace("%%issuemod_product%%",$lang['issuemod_product'],$bodyhtml);
196 $bodyhtml = str_ireplace("%%product%%",$issue['product'],$bodyhtml);
197 $bodyhtml = str_ireplace("%%issuemod_version%%",$lang['issuemod_version'],$bodyhtml);
198 $bodyhtml = str_ireplace("%%version%%",$issue['version'],$bodyhtml);
199 $bodyhtml = str_ireplace("%%issuemod_severity%%",$lang['issuemod_severity'],$bodyhtml);
200 $bodyhtml = str_ireplace("%%severity%%",$issue['severity'],$bodyhtml);
201 $bodyhtml = str_ireplace("%%issuemod_creator%%",$lang['issuemod_creator'],$bodyhtml);
202 $bodyhtml = str_ireplace("%%creator%%",$issue['user_name'],$bodyhtml);
203 $bodyhtml = str_ireplace("%%CREATOR_MAIL%%",$issue['user_mail'],$bodyhtml);
204 $bodyhtml = str_ireplace("%%th_assigned%%",$lang['th_assigned'],$bodyhtml);
205 $bodyhtml = str_ireplace("%%assigned%%",$issue['assigned'],$bodyhtml);
206 $bodyhtml = str_ireplace("%%th_created%%",$lang['th_created'],$bodyhtml);
207 $bodyhtml = str_ireplace("%%created%%",$issue['created'],$bodyhtml);
208 $bodyhtml = str_ireplace("%%issueassigned_head%%",$lang['issueassigned_head'],$bodyhtml);
209 $bodyhtml = str_ireplace("%%issueassigned_intro%%",$lang['issueassigned_intro'],$bodyhtml);
211 … $bodyhtml = str_ireplace("%%issue_resolved_intro%%",$lang['issue_resolved_intro'],$bodyhtml);
212 $bodyhtml = str_ireplace("%%issue_resolved_text%%",$lang['issue_resolved_text'],$bodyhtml);
213 $frmt_res = str_ireplace(chr(10),"<br />",$issue['resolution']);
214 $bodyhtml = str_ireplace("%%resolution%%",xs_format($frmt_res),$bodyhtml);
215 …$bodyhtml = str_ireplace("%%timestamp%%",date($conf['plugin']['issuetracker']['d_format']),$bodyht…
217 $bodyhtml = str_ireplace("%%resolver%%",$usr,$bodyhtml);
218 $bodyhtml = str_ireplace("%%mod_by%%",$usr,$bodyhtml);
219 …$bodyhtml = str_ireplace("%%issuedescrmod_subject%%",sprintf($lang['issuedescrmod_subject'],$issue…
220 $bodyhtml = str_ireplace("%%th_description%%",$lang['th_description'],$bodyhtml);
221 $frmt_descr = str_ireplace(chr(10),"<br />",$issue['description']);
222 $bodyhtml = str_ireplace("%%description%%",xs_format($frmt_descr),$bodyhtml);
226 $bodyhtml = str_ireplace("%%lbl_cmts_wlog%%",$lang['lbl_cmts_wlog'],$bodyhtml);
227 $bodyhtml = str_ireplace("%%cmnt_id%%",$comment['id'],$bodyhtml);
228 $bodyhtml = str_ireplace("%%edit_author%%",$comment['author'],$bodyhtml);
229 …$bodyhtml = str_ireplace("%%cmnt_timestamp%%",date($conf['plugin']['issuetracker']['d_format'],str…
230 $frmt_cmnt = str_ireplace(chr(10),"<br />",$comment['comment']);
231 $bodyhtml = str_ireplace("%%comment%%",xs_format($frmt_cmnt),$bodyhtml);
232 … $bodyhtml = str_ireplace("%%field%%",str_ireplace(chr(10),"<br />",$comment["field"]),$bodyhtml);
233 …$bodyhtml = str_ireplace("%%old_value%%",xs_format(str_ireplace(chr(10),"<br />",$comment["old_val…
234 …$bodyhtml = str_ireplace("%%new_value%%",xs_format(str_ireplace(chr(10),"<br />",$comment["new_val…
236 $bodyhtml = str_ireplace("%%issuemod_br%%",$lang['issuemod_br'],$bodyhtml);
237 $bodyhtml = str_ireplace("%%issuemod_end%%",$lang['issuemod_end'],$bodyhtml);