How to implement a helper in Symfony 1.4?

后端 未结 1 663
野趣味
野趣味 2021-02-01 06:56

I\'d like to create my own helper but can\'t find any help on Google for Symfony 1.4/Doctrine.

I guess it has something to do with creating a myClassHelper.class.p

1条回答
  •  时光说笑
    2021-02-01 07:49

    I don't think that anything changed regarding the helpers in 1.4. From the documentation(although 1.2):

    Helper functions (regular PHP functions returning HTML code) should be saved in a file called FooBarHelper.php, where FooBar is the name of the helper group. Store the file in the apps/myapp/lib/helper/ directory (or in any helper/ directory created under one of the lib/ folders of your project) so it can be found automatically by the use_helper('FooBar') helper for inclusion.

    So you just put normal functions in a normal file (has nothing to do with classes or methods). The functions can take arbitrary parameters (you decide what they need to create the HTML) and the have to return HTML.

    E.g.

    MyHelper.php

    function hello_word() {
       return 'Hello world!';
    }
    

    and in the template:

    
    
    
    
    

    0 讨论(0)
提交回复
热议问题