07-01-2007, 02:44 PM
El Forum
09-04-2008, 06:15 AM
[eluser]bAum[/eluser]
I just stumbled accross this posting doing a google search on the subject, its really not hard to do (taken from here):
All you need to do is copy "geshi.php" as well as the "geshi" folder into a new folder "application/plugins/geshi", and then to create a file "geshi_pi.php" within "application/plugins" with the following content:
That's it. To use it, you need load the plugin with $this->load->plugin(’geshi’) and can then play around with the colorize() function.
I just stumbled accross this posting doing a google search on the subject, its really not hard to do (taken from here):
All you need to do is copy "geshi.php" as well as the "geshi" folder into a new folder "application/plugins/geshi", and then to create a file "geshi_pi.php" within "application/plugins" with the following content:
Code:
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
function colorize($source, $language)
{
require_once(APPPATH.'plugins/geshi/geshi.php');
$geshi = new GeSHi(html_entity_decode($source), $language);
$geshi->set_header_type('');
return $geshi->parse_code();
}
?>
That's it. To use it, you need load the plugin with $this->load->plugin(’geshi’) and can then play around with the colorize() function.