Welcome Guest, Not a member yet? Register   Sign In
File manager with icons
#1

[eluser]rafabayona[/eluser]
Hi, I'm new to CodeIgniter.

I'm building a light file uploader/manager for a project and the uploading stuff is done, but now I would show an icon for each file, depending on its extension/type.

Should I store into the DB the file_type or the file_ext, or both? Can I reuse the config/mimes.php for this? I just allow uploading a few filetypes (~10-20 maybe).

Now I'm using this code in the view:
Code:
foreach ($ficheros as $f):?>
    <div class="fichero">
        <img src="&lt;?php echo base_url();?&gt;assets/img/file_48x48.png" alt="Documento" class="icono"/>
        <h3 title="&lt;?php echo$f['titulo'];?&gt;">&lt;?php echo character_limiter($f['titulo'], 40);?&gt;&lt;?php if (!$f['activo']) echo "<sup>Inactivo</sup>";?&gt;</h3>

        <p title="&lt;?php echo$f['desc_corta'];?&gt;">&lt;?php echo character_limiter($f['desc_corta'], 60);?&gt;</p>
        <div class="ocultar peroMostrarEnHover">
           &lt;?php echo anchor("ficheros/editar/$f[id]", 'Editar');?&gt; | &lt;?php echo anchor("ficheros/descargar/$f[id]", 'Descargar');?&gt;
        </div>
        <div class="clearboth"></div>
    </div>&lt;!--fichero--&gt;
&lt;?php endforeach ?&gt;

Thanks in advance and sorry for my english.


Messages In This Thread
File manager with icons - by El Forum - 09-28-2009, 03:59 AM
File manager with icons - by El Forum - 09-28-2009, 06:41 AM
File manager with icons - by El Forum - 09-29-2009, 02:04 AM
File manager with icons - by El Forum - 09-29-2009, 02:33 AM
File manager with icons - by El Forum - 09-30-2009, 11:46 PM
File manager with icons - by El Forum - 10-01-2009, 12:49 AM
File manager with icons - by El Forum - 10-01-2009, 02:52 AM
File manager with icons - by El Forum - 10-01-2009, 05:22 AM
File manager with icons - by El Forum - 10-01-2009, 05:42 AM



Theme © iAndrew 2016 - Forum software by © MyBB