controlLibrary = $controlLibrary; $this->registerControls(); } /** * registerControls */ protected function registerControls() { // UI $this->registerSectionControl(); $this->registerHintControl(); $this->registerRulerControl(); $this->registerPartialControl(); // Fields $this->registerTextControl(); $this->registerNumberControl(); $this->registerPasswordControl(); $this->registerEmailControl(); $this->registerTextareaControl(); $this->registerDropdownControl(); $this->registerRadioListControl(); $this->registerBalloonSelectorControl(); $this->registerCheckboxControl(); $this->registerCheckboxListControl(); $this->registerSwitchControl(); // Widgets $this->registerCodeEditorWidget(); $this->registerColorPickerWidget(); $this->registerDataTableWidget(); $this->registerDatepickerWidget(); $this->registerFileUploadWidget(); $this->registerMarkdownWidget(); $this->registerMediaFinderWidget(); $this->registerNestedFormWidget(); $this->registerRecordFinderWidget(); $this->registerRelationWidget(); $this->registerRepeaterWidget(); $this->registerRichEditorWidget(); $this->registerPageFinderWidget(); $this->registerSensitiveWidget(); $this->registerTagListWidget(); } }