Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/02/2011, 10:10
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Problema al agregar un helper

Tu helper debería de tener un método algo así:
Código PHP:
Ver original
  1. public function htmlHead()
  2. {
  3.      return $this;
  4. }

Para que puedas llamar después a $this->htmlHead()->css();

Saludos.