Funciona: - Usuario - Empresa git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@2 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
16 lines
337 B
PHP
16 lines
337 B
PHP
<?php
|
|
if($file->type==='php')
|
|
{
|
|
echo '<div class="content">';
|
|
highlight_string($file->content);
|
|
echo '</div>';
|
|
}
|
|
else if(in_array($file->type,array('txt','js','css')))
|
|
{
|
|
echo '<div class="content">';
|
|
echo nl2br($file->content);
|
|
echo '</div>';
|
|
}
|
|
else
|
|
echo '<div class="error">Preview is not available for this file type.</div>';
|
|
?>
|