FOF30\Render\RenderBase::__construct PHP Méthode

__construct() public méthode

Public constructor. Determines the priority of this class and if it should be enabled
public __construct ( Container $container )
$container FOF30\Container\Container
    public function __construct(Container $container)
    {
        $this->container = $container;
        $this->optionsRegistry = new \JRegistry();
    }

Usage Example

Exemple #1
0
 /**
  * Public constructor. Determines the priority of this class and if it should be enabled
  */
 public function __construct(Container $container)
 {
     $this->priority = 60;
     $this->enabled = class_exists('\\AkeebaStrapper30');
     parent::__construct($container);
 }