How do I call a helper function from CakePHP component?
App::import('helper', 'Upload'); $test = new UploadHelper(); pr($test->hi());
use this
$this->controller->helpers[] = "helper name";
inside the component class