/** * Listagem de notícias */ $order = $fields = $from = $where = ''; $headlinenchar = 300; $selecionaprimeiro = $total = 0; $autoDest = $_type->getParameter('autoDest'); $text_f = isset($_v['TEXT']); $title_f = isset($_v['TITLE']); $headline_f = isset($_v['HEADLINE']); $text2_f = isset($_v['TEXT2']); $record_url_f = isset($_v['RECORD_URL']); $fields = getFields($_it); //$fields =''; if(!$fields) { $fields =' distinct(t1.codinf) as _co, t1.codtype as _tp, t1.codfth as _cop'; if($title_f) { $fields.= ',t1.title'; } if($text_f) { $fields.= ',t1.itext'; } if($text2_f) { $fields.= ',t1.itext2'; } if($headline_f) { if($autoDest && !$text_f) { $fields.= ',t1.itext'; } else { $fields.= ',t1.headline'; } } setFields($_it, $fields); } // Vai buscar todas as actividades $lst = ''; $ison = $record =''; if(isset($_i['record'])) $record = $_i['record']; if(isset($_i['son'])) $ison = $_i['son']; $r0 = $bd->e('select codinf, title from infrecord where codtype = 26 and codlg = "'.$_LG.'" order by ord desc'); // order by ord desc if(nr($r0)) { while (list($codinfactividade, $titleactividade) = fa($r0)) { $reg = $record; $sonlst = ""; $sql = 'select SQL_CALC_FOUND_ROWS '.$fields.' from infrecord t1, property t2 where t1.pub=2 and t1.codtype = 56 and t1.codfth in (select codinf from infrecord where title = YEAR(now()) and codtype = 55) and t1.codinf = t2.codobj and codlg = '.$_LG.' and t2.codpp = '.$codinfactividade; $r1 = $bd->e($sql); $totalreg = nr($r1); if($totalreg) { while($_vars = fd($r1)) { $_co2 = $_vars['_co']; regCod($_tp, $_co2); $text = $headline = $title = $text2 = ''; $son = $ison; $this->buildSons($son, $_vars); if($record_url_f) { $url = getURL($_vars); repvar('RECORD_URL', $url, $son); } if($text_f) { repvar('TEXT', $_vars['itext'], $son); } if($title_f) { repvar('TITLE', $_vars['title'], $son); } if($text2_f ) { repvar('TEXT2', $_vars['itext2'], $son); } if($headline_f) { if($autoDest == 1) { $auxtexto = strip_tags($_vars['itext']); repvar('HEADLINE', stripParagraph($auxtexto, $headlinenchar), $son); } else { repvar('HEADLINE', $_vars['headline'], $son); } } repvar('COD', $_co2, $son); repvar('COP', $_vars['_cop'], $son); $sonlst .= $son; } fr($r1); } if($sonlst) { repvar('SONLST', $sonlst, $reg); repvar('TITLE', $titleactividade, $reg); $lst.= $reg; } } repvar('LIST', $lst, $_html); } else { if(isset($_i['empty'])) $_html = $_i['empty']; elseif(isset($_i['empty_lst'])) repvar('LIST', $_i['empty_lst'], $_html); elseif(!$_mainint) $_html = ''; } fr($r0); repvar('TP', $_tp, $_html); $url = (isset($_p['url'])?$_p['url']:'_'.$_url['url']); if($url) { if($_cop) { repvar('COP', $_cop, $url); } }