Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/06/2009, 09:06
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Respuesta: Activar o desactivar links por horario

Pues un simple if te bastaría creo:
Código php:
Ver original
  1. $startTime = strtotime("9:00");
  2. $endTime = strtotime("15:00");
  3. $now = time();
  4. if ( ($now < $startTime) || ($now > $endTime)) {
  5.         // imprimes links
  6. }

Saludos