__construct() 공개 메소드

public __construct ( $name, $defaultValue = null )
예제 #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;
 }
예제 #2
0
파일: TextEditor.php 프로젝트: sulu/sulu
 public function __construct($template, MarkupParserInterface $markupParser, $markupNamespace = 'sulu')
 {
     parent::__construct('TextEditor', '');
     $this->template = $template;
     $this->markupParser = $markupParser;
     $this->markupNamespace = $markupNamespace;
 }
예제 #3
0
파일: Phone.php 프로젝트: ollietb/sulu
 public function __construct($template)
 {
     parent::__construct('Phone', '');
     $this->template = $template;
 }
예제 #4
0
파일: Checkbox.php 프로젝트: Silwereth/sulu
 public function __construct($template)
 {
     parent::__construct('Checkbox', false);
     $this->template = $template;
 }
예제 #5
0
 public function __construct($template)
 {
     parent::__construct('SingleInternalLink', '');
     $this->template = $template;
 }
예제 #6
0
파일: TextArea.php 프로젝트: Silwereth/sulu
 public function __construct($template)
 {
     parent::__construct('TextArea', '');
     $this->template = $template;
 }
예제 #7
0
파일: SingleSelect.php 프로젝트: sulu/sulu
 public function __construct($template)
 {
     parent::__construct('SingleSelect', '');
     $this->template = $template;
 }
예제 #8
0
 public function __construct($template)
 {
     parent::__construct('MultipleSelect', []);
     $this->template = $template;
 }
예제 #9
0
 public function __construct($template)
 {
     parent::__construct('ResourceLocator', '');
     $this->template = $template;
 }