/***************************************************************
* Copyright notice
*
- * (c) 2010 Workspaces Team (http://forge.typo3.org/projects/show/typo3v4-workspaces)
+ * (c) 2010-2011 Workspaces Team (http://forge.typo3.org/projects/show/typo3v4-workspaces)
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* @subpackage Service
*/
class tx_Workspaces_Service_Befunc {
+
/**
* Hooks into the t3lib_beFunc::viewOnClick and redirects to the workspace preview
* only if we're in a workspace and if the frontend-preview is disabled.
* @param $switchFocus
* @return void
*/
- public function preProcess($pageUid, $backPath, $rootLine, $anchorSection, &$viewScript, $additionalGetVars, $switchFocus) {
- if ($GLOBALS['BE_USER']->workspace !== 0 && !$GLOBALS['BE_USER']->user['workspace_preview']) {
- $ctrl = t3lib_div::makeInstance('Tx_Workspaces_Controller_PreviewController', FALSE);
- $uriBuilder = t3lib_div::makeInstance('Tx_Extbase_MVC_Web_Routing_UriBuilder');
- /**
- * This seems to be very harsh to set this directly to "/typo3 but the viewOnClick also
- * has /index.php as fixed value here and dealing with the backPath is very error-prone
- *
- * @todo make sure this would work in local extension installation too
- */
- $backPath = '/' . TYPO3_mainDir;
- // @todo why do we need these additional params? the URIBuilder should add the controller, but he doesn't :(
- $additionalParams = '&tx_workspaces_web_workspacesworkspaces%5Bcontroller%5D=Preview&M=web_WorkspacesWorkspaces&id=';
- $viewScript = $backPath . $uriBuilder->uriFor('index', array(), $ctrl, 'workspaces', 'web_workspacesworkspaces') . $additionalParams;
+ public function preProcess(&$pageUid, $backPath, $rootLine, $anchorSection, &$viewScript, $additionalGetVars, $switchFocus) {
+ if ($GLOBALS['BE_USER']->workspace !== 0) {
+ $viewScript = $this->getWorkspaceService()->generateWorkspaceSplittedPreviewLink($pageUid);
}
}
+ /**
+ * Find the Live-Uid for a given page,
+ * the results are cached at run-time to avoid too many database-queries
+ *
+ * @throws InvalidArgumentException
+ * @param integer $uid
+ * @return integer
+ * @deprecated since TYPO3 4.6 - use tx_Workspaces_Service_Workspaces::getLivePageUid() instead
+ */
+ protected function getLivePageUid($uid) {
+ t3lib_div::deprecationLog(__METHOD__ . ' is deprected since TYPO3 4.6 - use tx_Workspaces_Service_Workspaces::getLivePageUid() instead');
+ return $this->getWorkspaceService()->getLivePageUid($uid);
+ }
+
+ /**
+ * Gets an instance of the workspaces service.
+ *
+ * @return tx_Workspaces_Service_Workspaces
+ */
+ protected function getWorkspaceService() {
+ return t3lib_div::makeInstance('tx_Workspaces_Service_Workspaces');
+ }
+
+ /**
+ * Use that hook to show a info message in case someone starts editing
+ * a staged element
+ *
+ * @param $params
+ * @param $form
+ * @return boolean
+ */
+ public function makeEditForm_accessCheck($params, &$form) {
+ if ($GLOBALS['BE_USER']->workspace !== 0 && $GLOBALS['TCA'][$params['table']]['ctrl']['versioningWS']) {
+ $record = t3lib_BEfunc::getRecordWSOL($params['table'], $params['uid']);
+ if (abs($record['t3ver_stage']) > Tx_Workspaces_Service_Stages::STAGE_EDIT_ID) {
+ $stages = t3lib_div::makeInstance('Tx_Workspaces_Service_Stages');
+ $stageName = $stages->getStageTitle($record['t3ver_stage']);
+ $editingName = $stages->getStageTitle(Tx_Workspaces_Service_Stages::STAGE_EDIT_ID);
+ $message = $GLOBALS['LANG']->sL('LLL:EXT:workspaces/Resources/Private/Language/locallang.xlf:info.elementAlreadyModified');
+ $flashMessage = t3lib_div::makeInstance(
+ 't3lib_FlashMessage',
+ sprintf($message, $stageName, $editingName),
+ '',
+ t3lib_FlashMessage::INFO,
+ TRUE
+ );
+ t3lib_FlashMessageQueue::addMessage($flashMessage);
+ }
+ }
+ return $params['hasAccess'];
+ }
}
-if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/workspaces/Classes/Service/Befunc.php']) {
- include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/workspaces/Classes/Service/Befunc.php']);
+if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/workspaces/Classes/Service/Befunc.php'])) {
+ include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/workspaces/Classes/Service/Befunc.php']);
}
?>
\ No newline at end of file