/** * Saves the content of ->stored (keeps track of expanded positions in the tree) * $this->treeName will be used as key for BE_USER->uc[] to store it in * * @return void * @access private */ function savePosition() { $this->BE_USER->uc['browseTrees'][$this->treeName] = serialize($this->stored); $this->BE_USER->writeUC(); }
/** * Postpones the donate window - thus it will be shown again at a later time. * * @param array $parameters: Parameters (not used) * @param TYPO3AJAX $ajaxObj: The calling parent AJAX object * @return void */ public function postpone(array $parameters, TYPO3AJAX $ajaxObj) { $this->backendUser->uc[self::FLAG_DonateWindowPostponed] = $GLOBALS['EXEC_TIME']; $this->backendUser->writeUC(); }