public function __construct()
 {
     parent::__construct();
     $this->canvasParamName = OpfConfig::PARAM_CMDLEVEL1;
     //$loc = new OpfLocalization();
     $this->mainCanvas = null;
     $this->executeAction = new OpfExecuteAction($this);
     $this->actionCompletionMessage = null;
 }
Пример #2
0
 public function __construct($parentUIObject)
 {
     parent::__construct($parentUIObject);
     $this->hrefList = array();
     $this->selectedIndex = -1;
     $this->tableHtmlClass = self::CLASS_CATEGORY_TABLE;
     $this->selectedHtmlClass = self::CLASS_CATEGORY_SELECTED;
     $this->nonSelectedHtmlClass = self::CLASS_CATEGORY;
 }
Пример #3
0
 public function __construct($parentUIObject, $dialogName, $dialogTitle, $buttonLabel, $formName, $formAction, $buttonSize)
 {
     parent::__construct($parentUIObject);
     $this->asyncDialogButtton = 1;
     $this->showDivOnClick = null;
     $this->showDivOnComplete = null;
     $this->dialogButtonLabel = self::DIALOG_BUTTON_VALUE;
     $this->dialogName = $dialogName;
     $this->dialogTitle = $dialogTitle;
     $this->buttonLabel = $buttonLabel;
     $this->formName = $formName;
     $this->formAction = $formAction;
     $this->buttonSize = $buttonSize;
 }
Пример #4
0
 public function __construct($parentUIObject)
 {
     parent::__construct($parentUIObject);
 }
Пример #5
0
 public function __construct($parentUIObject)
 {
     parent::__construct($parentUIObject);
     $this->context = $parentUIObject->getContext();
 }
Пример #6
0
 public function __construct($parentUIObject)
 {
     parent::__construct($parentUIObject);
     $this->actionClass = $this->getActionClassFromParameter();
 }