• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Date and time of loading image

Jan

Chevereto Noob
Preview
http://phillypic.netsons.org/img/preqwqw.png
http://phillypic.netsons.org/?v=ihazfounda.gif

Description
This "plug-in" add the date and the time of loading image on the viewing mode.

Guide
On the index.php change (line 217)
$mensaje = $quehace.' <a href="'.PATH_SCRIPT.DIR_IM.$folhost.$name.'">'.$name.'</a> ('.$tamano_kb.' KB - '.$ancho.'x'.$alto.'px)'.$colita;
to this
$file = 'thumbs/'.$name.'';
$last_time_modified = filemtime($file);
$last_mod = date("d/m/y H:i", $last_time_modified);
$mensaje = $quehace.'<a href="'.PATH_SCRIPT.DIR_IM.$folhost.$name.'">'.$name.'</a> ('.$tamano_kb.' KB - '.$ancho.'x'.$alto.'px - '.$last_mod.')'.$colita;
 
Back
Top