コード例 #1
0
ファイル: PickerForm.php プロジェクト: Why-Not-Sky/cubi-ng
 /**
  * Get/Retrieve Session data of this object
  *
  * @param SessionContext $sessionContext
  * @return void
  */
 public function getSessionVars($sessionContext)
 {
     parent::getSessionVars($sessionContext);
     $sessionContext->getObjVar($this->m_Name, "ParentFormElemName", $this->m_ParentFormElemName);
     $sessionContext->getObjVar($this->m_Name, "PickerMap", $this->m_PickerMap);
     $sessionContext->getObjVar($this->m_Name, "ParentFormRecord", $this->m_ParentFormRecord);
 }
コード例 #2
0
ファイル: LicenseForm.php プロジェクト: Why-Not-Sky/cubi-ng
 public function getSessionVars($sessionContext)
 {
     $sessionContext->getObjVar("common.form.LicenseForm", "SourceURL", $this->m_SourceURL);
     $sessionContext->getObjVar("common.form.LicenseForm", "ErrorCode", $this->m_ErrorCode);
     $sessionContext->getObjVar("common.form.LicenseForm", "ErrorParams", $this->m_ErrorParams);
     parent::getSessionVars($sessionContext);
 }
コード例 #3
0
ファイル: F_ElementEdit.php プロジェクト: que273/siremis
 public function getSessionVars($sessCtxt)
 {
     parent::getSessionVars($sessCtxt);
     if (!$_GET['metaName']) {
         $sessCtxt->getObjVar($this->m_Name, "MetaFile", $this->m_MetaFile);
     } else {
         $metaFile = MODULE_PATH . "/" . str_replace(".", "/", $_GET['metaName']) . ".xml";
         $this->m_MetaFile = $metaFile;
     }
     if (!$_GET['elemPath']) {
         $sessCtxt->getObjVar($this->m_Name, "ElemPath", $this->m_ElemPath);
     } else {
         $this->m_ElemPath = $_GET['elemPath'];
     }
     if (!$_GET['attrName']) {
         $sessCtxt->getObjVar($this->m_Name, "AttrName", $this->m_AttrName);
     } else {
         $this->m_AttrName = $_GET['attrName'];
     }
 }
コード例 #4
0
 public function getSessionVars($sessionContext)
 {
     $sessionContext->getObjVar("DataSharingForm", "ParentRecordId", $this->m_ParentRecordId);
     $sessionContext->getObjVar("DataSharingForm", "ParentFormName", $this->m_ParentFormName);
     return parent::getSessionVars($sessionContext);
 }
コード例 #5
0
ファイル: MenuForm.php プロジェクト: Why-Not-Sky/cubi-ng
 public function getSessionVars($sessCtxt)
 {
     $sessCtxt->getObjVar($this->m_Name, "DirectParent", $this->_directParentId);
     parent::getSessionVars($sessCtxt);
 }
コード例 #6
0
ファイル: TranslationForm.php プロジェクト: que273/siremis
 public function getSessionVars($sessionContext)
 {
     parent::getSessionVars($sessionContext);
     $sessionContext->getObjVar("Translation", "Lang", $this->m_Lang);
 }
コード例 #7
0
ファイル: ErrorForm.php プロジェクト: Why-Not-Sky/cubi-ng
 public function getSessionVars($sessionContext)
 {
     parent::getSessionVars($sessionContext);
     $sessionContext->getObjVar($this->m_Name, "Errors", $this->m_Errors);
     $sessionContext->getObjVar($this->m_Name, "showError", $this->m_ShowError);
 }
コード例 #8
0
ファイル: AclRoleActionsForm.php プロジェクト: que273/siremis
 public function getSessionVars($sessionContext)
 {
     parent::getSessionVars($sessionContext);
     $sessionContext->getObjVar($this->m_Name, "_roleId", $this->_roleId);
 }
コード例 #9
0
 public function getSessionVars($sessionContext)
 {
     $sessionContext->getObjVar($this->m_Name, "ViewMode", $this->viewMode);
     parent::getSessionVars($sessionContext);
 }