Informática Numaboa - Tutoriais e Programação
GeSHi à moda da casa
Qui 9 Jul 2009 12:17 |
- Detalhes
- Categoria: Joomla
- Atualização: Segunda, 02 Julho 2012 19:38
- Autor: vovó Vicki
- Acessos: 6627
Lá na altura da linha 59 os parâmetros são analisados, então vamos criar um novo parâmetro neste ponto. Chamei-o de "inicio" e seu valor padrão é 1:
Logo depois de criar o objeto $geshi é verificado se as linhas de código devem ser numeradas ou não. Neste ponto é usado uma das propriedades da classe geshi para iniciar a numeração, a enable_line_numbers. Vamos usar mais uma propriedade, a start_line_numbers_at, para que a numeração comece a partir do número indicado:
Agora, se eu chamar o GeSHi com
<geshi lines="true" inicio="10">qualquer coisa</geshi>
o resultado será:
E viva "nóis"!!! O resultado não poderia ser melhor
A terceira etapa
Já sei. Agora vocês vão me cobrar como colocar um título nos blocos do GeSHi. É lógico que vamos precisar de mais um parâmetro, que eu chamei de tit. Para ciscar este parâmetro, voltamos para as linhas depois da linha 59:
Com isto, se o parâmetro tit existir, ele será considerado; se não, a string será nada ou vazia. Agora, novamente logo depois de criar o objeto geshi, vamos informá-lo do estilo que queremos para a área de título (fique à vontade para criar o seu). Para isto usamos a propriedade set_header_content_style:
Depois de definido o estilo, vamos usar a propriedade set_header_content para incluir o título:
Agora, se eu chamar o GeSHi com
<geshi lines="true" inicio="10" tit="Título">qualquer coisa</geshi>
o resultado será:
Este é o plugin do GeSHi que uso, bem à moda da casa. Mostro a seguir o código completo do plugin modificado:
...tags with highlighted text * Troquei por <geshi>...</geshi> */ function plgContentGeshi( &$row, &$params, $page=0 ) { // simple performance check to determine whether bot should process further if ( JString::strpos( $row->text, 'geshi>' ) === false ) { return true; } // Get Plugin info $plugin =& JPluginHelper::getPlugin('content', 'geshi'); // define the regular expression for the bot $regex = "#<geshi\s*(.*?)>(.*?)</geshi>#s"; $GLOBALS['_MAMBOT_GESHI_PARAMS'] =& $params; // perform the replacement $row->text = preg_replace_callback( $regex, 'plgContentGeshi_replacer', $row->text ); return true; } /** * Replaces the matched tags an image * @param array An array of matches (see preg_match_all) * @return string */ function plgContentGeshi_replacer( &$matches ) { $params =& $GLOBALS['_MAMBOT_GESHI_PARAMS']; jimport('geshi.geshi'); jimport('domit.xml_saxy_shared'); $args = SAXY_Parser_Base::parseAttributes( $matches[1] ); $text = $matches[2]; $lang = JArrayHelper::getValue( $args, 'lang', 'php' ); $lines = JArrayHelper::getValue( $args, 'lines', 'false' ); $inicio = JArrayHelper::getValue( $args, 'inicio', '1' ); $tit = JArrayHelper::getValue( $args, 'tit', '' ); $html_entities_match = array( "|\
|", "#<#", "#>#", "|'|", '#"#', '# #' ); $html_entities_replace = array( "\n", '<', '>', "'", '"', ' ' ); $text = preg_replace( $html_entities_match, $html_entities_replace, $text ); $text = str_replace('<', '<', $text); $text = str_replace('>', '>', $text); // Replace tabs with " " so tabbed code indents sorta right without making huge long lines. $text = str_replace( "\t", ' ', $text ); $geshi = new GeSHi( $text, $lang ); if ($lines == 'true') { $geshi->enable_line_numbers( GESHI_NORMAL_LINE_NUMBERS ); $geshi->start_line_numbers_at( $inicio ); } $geshi->set_header_content_style("border-bottom: 1px dotted #aaaaaa; padding: 3pt; margin-bottom: 10px; font-size: 12px; font-weight: bold; color: #666666"); if( $tit != '') { $geshi->set_header_content( $tit ); } $text = $geshi->parse_code(); return $text; }
- << Anterior
- Próximo