__construct() public method

public __construct ( $name, $defaultValue = null )
Ejemplo n.º 1
0
 /**
  * @param string $template
  * @param TeaserProviderPoolInterface $providerPool
  * @param TeaserManagerInterface $teaserManager
  */
 public function __construct($template, TeaserProviderPoolInterface $providerPool, TeaserManagerInterface $teaserManager)
 {
     parent::__construct('teaser_selection');
     $this->template = $template;
     $this->teaserProviderPool = $providerPool;
     $this->teaserManager = $teaserManager;
 }
Ejemplo n.º 2
0
 public function __construct($template, MarkupParserInterface $markupParser, $markupNamespace = 'sulu')
 {
     parent::__construct('TextEditor', '');
     $this->template = $template;
     $this->markupParser = $markupParser;
     $this->markupNamespace = $markupNamespace;
 }
Ejemplo n.º 3
0
 public function __construct($template)
 {
     parent::__construct('Phone', '');
     $this->template = $template;
 }
Ejemplo n.º 4
0
 public function __construct($template)
 {
     parent::__construct('Checkbox', false);
     $this->template = $template;
 }
Ejemplo n.º 5
0
 public function __construct($template)
 {
     parent::__construct('SingleInternalLink', '');
     $this->template = $template;
 }
Ejemplo n.º 6
0
 public function __construct($template)
 {
     parent::__construct('TextArea', '');
     $this->template = $template;
 }
Ejemplo n.º 7
0
 public function __construct($template)
 {
     parent::__construct('SingleSelect', '');
     $this->template = $template;
 }
Ejemplo n.º 8
0
 public function __construct($template)
 {
     parent::__construct('MultipleSelect', []);
     $this->template = $template;
 }
Ejemplo n.º 9
0
 public function __construct($template)
 {
     parent::__construct('ResourceLocator', '');
     $this->template = $template;
 }