Bug #22345 ยป 13952.patch
t3lib/class.t3lib_page.php (working copy) | ||
---|---|---|
if ($lUid<0) $lUid = $this->sys_language_uid;
|
||
$row = NULL;
|
||
if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_page.php']['getPageOverlay'])) {
|
||
foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_page.php']['getPageOverlay'] as $classRef) {
|
||
$hookObject = t3lib_div::getUserObj($classRef);
|
||
if (!($hookObject instanceof t3lib_pageSelect_getPageOverlayHook)) {
|
||
throw new UnexpectedValueException('$hookObject must implement interface t3lib_pageSelect_getPageOverlayHook', 1269878881);
|
||
}
|
||
$hookObject->getPageOverlay_preProcess($pageInput, $lUid, $this);
|
||
}
|
||
}
|
||
// If language UID is different from zero, do overlay:
|
||
if ($lUid) {
|
||
$fieldArr = explode(',', $GLOBALS['TYPO3_CONF_VARS']['FE']['pageOverlayFields']);
|
t3lib/core_autoload.php (working copy) | ||
---|---|---|
't3lib_browselinkshook' => PATH_t3lib . 'interfaces/interface.t3lib_browselinkshook.php',
|
||
't3lib_localrecordlistgettablehook' => PATH_t3lib . 'interfaces/interface.t3lib_localrecordlistgettablehook.php',
|
||
't3lib_pageselect_getpagehook' => PATH_t3lib . 'interfaces/interface.t3lib_pageselect_getpagehook.php',
|
||
't3lib_pageselect_getpageoverlayhook' => PATH_t3lib . 'interfaces/interface.t3lib_pageselect_getpageoverlayhook.php',
|
||
't3lib_singleton' => PATH_t3lib . 'interfaces/interface.t3lib_singleton.php',
|
||
't3lib_tceformsinlinehook' => PATH_t3lib . 'interfaces/interface.t3lib_tceformsinlinehook.php',
|
||
't3lib_tcemain_checkmodifyaccesslisthook' => PATH_t3lib . 'interfaces/interface.t3lib_tcemain_checkmodifyaccesslisthook.php',
|
t3lib/interfaces/interface.t3lib_pageselect_getpageoverlayhook.php (revision 0) | ||
---|---|---|
<?php
|
||
/***************************************************************
|
||
* Copyright notice
|
||
*
|
||
* (c) 2010 Tolleiv Nietsch <nietsch@aoemedia.de>
|
||
* All rights reserved
|
||
*
|
||
* This script is part of the TYPO3 project. The TYPO3 project is
|
||
* free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 2 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* The GNU General Public License can be found at
|
||
* http://www.gnu.org/copyleft/gpl.html.
|
||
* A copy is found in the textfile GPL.txt and important notices to the license
|
||
* from the author is found in LICENSE.txt distributed with these scripts.
|
||
*
|
||
*
|
||
* This script is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* This copyright notice MUST APPEAR in all copies of the script!
|
||
***************************************************************/
|
||
/**
|
||
* interface for classes which hook into t3lib_pageSelect
|
||
*
|
||
* @author Tolleiv Nietsch <nietsch@aoemedia.de>
|
||
* @package TYPO3
|
||
* @subpackage t3lib
|
||
*/
|
||
interface t3lib_pageSelect_getPageOverlayHook {
|
||
/**
|
||
* enables to preprocess the pageoverlay
|
||
*
|
||
* @param array $pageInput - the page record
|
||
* @param integer $lUid - the overlay language
|
||
* @param t3lib_pageSelect $parent - the calling parent object
|
||
* @return void
|
||
*/
|
||
public function getPageOverlay_preProcess(&$pageInput, &$lUid, t3lib_pageSelect $parent);
|
||
}
|
||
?>
|