Or if you want to be stylish about it make a new helper class with your
function in it and add 'Html' to the $helpers array:

class MyHelper extends AppHelper {
    var $helpers = array('Html');

    function my_function(){


On Thu, Jul 1, 2010 at 2:04 PM, Miles J <[email protected]> wrote:

> Because $html is not a global variable, its restricted to the scope of
> the view rendering process.
>
> You need to pass it as an argument.
>
> On Jul 1, 4:46 am, saidbakr <[email protected]> wrote:
> > So why global does not work?
> >
> > for example:
> > function foo(){
> > global $html;
> >
> > }
> >
> > On Jul 1, 12:22 pm, "Dr. Loboto" <[email protected]> wrote:
> >
> > > You need to pass these variables into function.
> >
> > > On Jul 1, 2:57 am, saidbakr <[email protected]> wrote:
> >
> > > > Sorry, it was just typing mistake. I already write it with brckets -
> > > > notice the closing bracket -.
> >
> > > > I still don't know how to make Html helper accessible inside the
> > > > function.
> >
> > > > On Jun 30, 7:33 pm, Shaz <[email protected]> wrote:
> >
> > > > > .$html->link[$catName,
> >
> > > > > You're using a square bracket? Should be:
> >
> > > > > .$html->link($catName,
> >
> > > > > On Jun 30, 5:13 pm, saidbakr <[email protected]> wrote:
> >
> > > > > > Hi,
> > > > > > I have a little function in one of my views. This function could
> not
> > > > > > able to use helpers. For example:
> >
> > > > > > //add.ctp
> >
> > > > > > // some html
> > > > > > <?php
> > > > > > function printCat(){
> >
> > > > > > echo '<h1>'.$html->link[$catName,
> > > > > >
> array('controller'=>'categories','action'=>'view','id'=>$catId)).'</
> > > > > > h1>';
> >
> > > > > > }
> >
> > > > > > ?>
> >
> > > > > > I don't know how could I able to make the html helper accessible
> by
> > > > > > the function?!
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]<cake-php%[email protected]>For
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to