I have a regular Class like

    class RangeColumn extends Column{
        //...
    }

in my Symfony2 Project,

Now inside this class is a render function, in which i'd like to use Twig or the Translation Service of Symfony2 to render a specific template. How do i access this services in a proper way?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Code example:

<?php

class MyRegularClass
{
    private $translator;

    public function __construct(Translator $translator)
    {
        $this->translator = $translator;
    }

    public function myFunction()
    {
        $this->translator->trans('sentence_to_translate');
    }
}

And if you want your class to become a service: In your services.yml file located in your bundle,

parameters:
    my_regular_class.class: Vendor\MyBundle\Classes\MyRegularClass

services:
    mybundle.classes.my_regular_class:
        class: %my_regular_class.class%
        arguments: [@translator]

For more details, see the chapter about the Symfony2 Service Container

link|improve this answer
feedback

Use dependency injection. It's a really simple concept.

You should simply pass (inject) needed services to your class.

If dependencies are obligatory pass them in a costructor. If they're optional use setters.

You might go further and delegate construction of your class to the dependency injection container (make a service out of it).

Services are no different from your "regular" class. It's just that their construction is delegated to the container.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.