Lines Matching refs:value

700                     list($key, $value) = split(":",trim($item),2);
704 $anchor = trim($value);
706 elseif(($key=='start') && strtotime(trim($value)) < time()) {
708 $value = date($this->getConf('d_format'), strtotime($value));
709 $news_date = '<span class="news_date"> ('. $value ;
711 elseif(($key=='stop') && strtotime(trim($value)) > time()) {
722 $linkx = $this->replace_links($pattern, $value, 'medi');
727 $links = $this->replace_links($pattern, $value, 'url');
731 $check = explode(' ', $value);
750 $news_head = $value;
756 $start= stripos($news_rawcontent,$value)-5;
759 if(stripos($temps,$value)!==false) {
771 … <input type="hidden" name="summary" value="['.$value.'] " />
790 …$news_head = '<a class="news_link" href="'.$value.'" id="news_link'.$prev_id.'" rel="subcontent…
798 $anID = explode("id=",$value);
800 else $theLink = $value;
804 <a class="news_link" href="'.$value.'" target="_blank">
815 $news_date .= ', '. $value;
818 $tags = explode(',',$value);
861 list($key, $value) = split(":",trim($item),2);
862 if(($key=='start') && strtotime(trim($value)) < time()) {
864 $value = date($this->getConf('d_format'), strtotime($value));
865 $news_date = '<span class="news_date"> ('. $value ;
867 elseif(($key=='stop') && strtotime(trim($value)) > time()) {
874 $tags = explode(',',$value);
1010 list($key, $value) = split(":",trim($item),2);
1013 $anchor = trim($value);
1015 elseif(($key=='start') && strtotime(trim($value)) < time()) {
1017 $value = date($this->getConf('d_format'), strtotime($value));
1021 else */$news_date = '<span class="news_date"> ('. $value ;
1023 elseif(($key=='stop') && strtotime(trim($value)) > time()) {
1033 $linkx = $this->replace_links($pattern, $value, 'medi');
1038 $links = $this->replace_links($pattern, $value, 'url');
1043 $check = explode(' ', $value);
1054 $prvw_string = $value;
1065 $news_head = trim($value);
1071 $start= stripos($news_rawcontent,$value)-5;
1074 if(stripos($temps,$value)!==false) {
1085 … <input type="hidden" name="summary" value="['.$value.'] " />
1103 …$news_subtitle = '<br /><span class="news_subtitle">'.trim($value).'</span>'.NL; …
1106 … $news_head = '<a href="'.$value.'" id="'.$value.'" name="'.$value.'">'. $news_head .'</a>'.NL;
1110 $news_date .= ', '. $value;
1113 $tags = explode(',',$value);
1190 list($key, $value) = split("=",trim($item),2);
1191 $archive_options = $archive_options + array($key => $value);
1222 list($key, $value) = split(":",trim($item),2);
1225 $anchor = trim($value);
1227 elseif(($key=='start') && strtotime(trim($value)) < time()) {
1228 $value = date($this->getConf('d_format'), strtotime($value));
1229 $news_date = '<span class="news_date_a"> ('. $value;
1231 …t($archive_options['date']) && ($archive_options['date'] !== date('m.Y',strtotime($value)))) break;
1236 $news_head = trim($value);
1239 …$news_subtitle = '<br /><span class="news_subtitle">'.trim($value).'</span>'.NL; …
1242 …$news_head = '<a href="'.$value.'" id="'.$value.'" name="'.$value.'">'. trim($news_head) .'</a>'.N…
1245 $news_wysiwyg = $value;
1248 $news_content = $value;
1251 $news_date .= ', '. $value;
1254 $tags = explode(',',$value);
1383 function replace_links($pattern, &$value, $r_string) { argument
1385 preg_match_all($pattern, $value, $links);
1389 $value = str_replace($link,$r_string.$in,$value);