Bug #24342 » 16749_v2.patch
t3lib/class.t3lib_abstract_lock.php (revision 0) | ||
---|---|---|
<?php
|
||
/***************************************************************
|
||
* Copyright notice
|
||
*
|
||
* (c) 2008-2010 Michael Stucki (michael@typo3.org)
|
||
* 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!
|
||
***************************************************************/
|
||
/**
|
||
* Class for providing locking features in TYPO3
|
||
*
|
||
* $Id: class.t3lib_lock.php 9758 2010-12-05 11:25:36Z stephenking $
|
||
*
|
||
* @author Michael Stucki <michael@typo3.org>
|
||
*/
|
||
/**
|
||
* TYPO3 locking class
|
||
* This class provides an abstract layer to various locking features for TYPO3
|
||
*
|
||
* It is intended to blocks requests until some data has been generated.
|
||
* This is especially useful if two clients are requesting the same website short after each other. While the request of client 1 triggers building and caching of the website, client 2 will be waiting at this lock.
|
||
*
|
||
* @author Michael Stucki <michael@typo3.org>
|
||
* @package TYPO3
|
||
* @subpackage t3lib
|
||
* @see class.t3lib_tstemplate.php, class.tslib_fe.php
|
||
*/
|
||
class t3lib_abstract_lock {
|
||
protected $method;
|
||
protected $id; // Identifier used for this lock
|
||
protected $resource; // Resource used for this lock (can be a file or a semaphore resource)
|
||
protected $filepointer;
|
||
protected $isAcquired = FALSE;
|
||
protected $destruct=FALSE; // destroy all resources on destruct
|
||
protected $loops = 150; // Number of times a locked resource is tried to be acquired. This is only used by manual locks like the "simple" method.
|
||
protected $step = 200; // Milliseconds after lock acquire is retried. $loops * $step results in the maximum delay of a lock. Only used by manual locks like the "simple" method.
|
||
/**
|
||
* Constructor:
|
||
* initializes locking, check input parameters and set variables accordingly.
|
||
*
|
||
* @param string ID to identify this lock in the system
|
||
* @param string Define which locking method to use. Defaults to "simple".
|
||
* @param integer Number of times a locked resource is tried to be acquired. This is only used by manual locks like the "simple" method.
|
||
* @param integer Milliseconds after lock acquire is retried. $loops * $step results in the maximum delay of a lock. Only used by manual locks like the "simple" method.
|
||
* @return boolean Returns true unless something went wrong
|
||
*/
|
||
public function __construct($id, $method = '', $loops = 0, $step = 0) {
|
||
// Input checks
|
||
$id = (string) $id; // Force ID to be string
|
||
if (intval($loops)) {
|
||
$this->loops = intval($loops);
|
||
}
|
||
if (intval($step)) {
|
||
$this->step = intval($step);
|
||
}
|
||
// Detect locking method
|
||
if (in_array($method, array('disable', 'simple', 'flock', 'semaphore'))) {
|
||
$this->method = $method;
|
||
} else {
|
||
throw new Exception('No such method "' . $method . '"');
|
||
}
|
||
$success = FALSE;
|
||
switch ($this->method) {
|
||
case 'simple':
|
||
case 'flock':
|
||
$path = PATH_site . 'typo3temp/locks/';
|
||
if (!is_dir($path)) {
|
||
t3lib_div::mkdir($path);
|
||
}
|
||
$this->id = md5($id);
|
||
$this->resource = $path . $this->id;
|
||
$success = TRUE;
|
||
break;
|
||
case 'semaphore':
|
||
$this->id = abs(crc32($id));
|
||
if (($this->resource = sem_get($this->id, 1)) == TRUE) {
|
||
$success = TRUE;
|
||
}
|
||
break;
|
||
case 'disable':
|
||
return FALSE;
|
||
break;
|
||
}
|
||
return $success;
|
||
}
|
||
/**
|
||
* Destructor:
|
||
* Releases lock automatically when instance is destroyed.
|
||
*
|
||
* @return void
|
||
*/
|
||
function __destruct() {
|
||
$this->destruct=TRUE;
|
||
$this->release();
|
||
}
|
||
/**
|
||
* Acquire a lock and return when successful. If the lock is already open, the client will be
|
||
*
|
||
* It is important to know that the lock will be acquired in any case, even if the request was blocked first. Therefore, the lock needs to be released in every situation.
|
||
*
|
||
* @return boolean Returns true if lock could be acquired without waiting, false otherwise.
|
||
*/
|
||
public function acquire() {
|
||
$this->isAcquired = FALSE;
|
||
return FALSE;
|
||
}
|
||
/**
|
||
* Release the lock
|
||
*
|
||
* @return boolean Returns TRUE on success or FALSE on failure
|
||
*/
|
||
public function release() {
|
||
return TRUE;
|
||
}
|
||
/**
|
||
* Return the locking method which is currently used
|
||
*
|
||
* @return string Locking method
|
||
*/
|
||
public function getMethod() {
|
||
return $this->method;
|
||
}
|
||
/**
|
||
* Return the ID which is currently used
|
||
*
|
||
* @return string Locking ID
|
||
*/
|
||
public function getId() {
|
||
return $this->id;
|
||
}
|
||
/**
|
||
* Return the resource which is currently used.
|
||
* Depending on the locking method this can be a filename or a semaphore resource.
|
||
*
|
||
* @return mixed Locking resource (filename as string or semaphore as resource)
|
||
*/
|
||
public function getResource() {
|
||
return $this->resource;
|
||
}
|
||
/**
|
||
* Return the status of a lock
|
||
*
|
||
* @return string Returns TRUE if lock is acquired, FALSE otherwise
|
||
*/
|
||
public function getLockStatus() {
|
||
return $this->isAcquired;
|
||
}
|
||
/**
|
||
* Adds a common log entry for this locking API using t3lib_div::sysLog().
|
||
* Example: 25-02-08 17:58 - cms: Locking [simple::0aeafd2a67a6bb8b9543fb9ea25ecbe2]: Acquired
|
||
*
|
||
* @param string $message: The message to be logged
|
||
* @param integer $severity: Severity - 0 is info (default), 1 is notice, 2 is warning, 3 is error, 4 is fatal error
|
||
* @return void
|
||
*/
|
||
public function sysLog($message, $severity = 0) {
|
||
t3lib_div::sysLog('Locking [' . $this->method . '::' . $this->id . ']: ' . trim($message), 'cms', $severity);
|
||
}
|
||
}
|
||
|
||
if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_abstract_lock.php'])) {
|
||
include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_abstract_lock.php']);
|
||
}
|
||
?>
|
t3lib/class.t3lib_lock.php (working copy) | ||
---|---|---|
* @subpackage t3lib
|
||
* @see class.t3lib_tstemplate.php, class.tslib_fe.php
|
||
*/
|
||
class t3lib_lock {
|
||
protected $method;
|
||
protected $id; // Identifier used for this lock
|
||
protected $resource; // Resource used for this lock (can be a file or a semaphore resource)
|
||
protected $filepointer;
|
||
protected $isAcquired = FALSE;
|
||
protected $loops = 150; // Number of times a locked resource is tried to be acquired. This is only used by manual locks like the "simple" method.
|
||
protected $step = 200; // Milliseconds after lock acquire is retried. $loops * $step results in the maximum delay of a lock. Only used by manual locks like the "simple" method.
|
||
class t3lib_lock extends t3lib_abstract_lock {
|
||
|
||
/**
|
||
* Constructor:
|
||
* initializes locking, check input parameters and set variables accordingly.
|
||
... | ... | |
* @return boolean Returns true unless something went wrong
|
||
*/
|
||
public function __construct($id, $method = '', $loops = 0, $step = 0) {
|
||
// Input checks
|
||
$id = (string) $id; // Force ID to be string
|
||
if (intval($loops)) {
|
||
$this->loops = intval($loops);
|
||
parent::__construct($id,$method,$loops,$step);
|
||
$this->initLockLock($method,$loops,$step);
|
||
}
|
||
|
||
public function initLockLock($method,$loops,$step) {
|
||
if (!$GLOBALS['lockLock'] || !($GLOBALS['lockLock'] instanceof t3lib_lock_static)) {
|
||
$GLOBALS['lockLock']=t3lib_div::makeInstance('t3lib_lock_static','lockLock',$method,$loops,$step);
|
||
}
|
||
if (intval($step)) {
|
||
$this->step = intval($step);
|
||
}
|
||
// Detect locking method
|
||
if (in_array($method, array('disable', 'simple', 'flock', 'semaphore'))) {
|
||
$this->method = $method;
|
||
} else {
|
||
throw new Exception('No such method "' . $method . '"');
|
||
}
|
||
$success = FALSE;
|
||
switch ($this->method) {
|
||
case 'simple':
|
||
case 'flock':
|
||
$path = PATH_site . 'typo3temp/locks/';
|
||
if (!is_dir($path)) {
|
||
t3lib_div::mkdir($path);
|
||
}
|
||
$this->id = md5($id);
|
||
$this->resource = $path . $this->id;
|
||
$success = TRUE;
|
||
break;
|
||
case 'semaphore':
|
||
$this->id = abs(crc32($id));
|
||
if (($this->resource = sem_get($this->id, 1)) == TRUE) {
|
||
$success = TRUE;
|
||
}
|
||
break;
|
||
case 'disable':
|
||
return FALSE;
|
||
break;
|
||
}
|
||
return $success;
|
||
|
||
}
|
||
/**
|
||
* Destructor:
|
||
* Releases lock automatically when instance is destroyed.
|
||
*
|
||
* @return void
|
||
*/
|
||
function __destruct() {
|
||
$this->release();
|
||
}
|
||
/**
|
||
* Acquire a lock and return when successful. If the lock is already open, the client will be
|
||
*
|
||
* It is important to know that the lock will be acquired in any case, even if the request was blocked first. Therefore, the lock needs to be released in every situation.
|
||
... | ... | |
$this->sysLog('Waiting for a different process to release the lock');
|
||
$maxExecutionTime = ini_get('max_execution_time');
|
||
$maxAge = time() - ($maxExecutionTime ? $maxExecutionTime : 120);
|
||
if (@filectime($this->resource) < $maxAge) {
|
||
@unlink($this->resource);
|
||
$this->sysLog('Unlink stale lockfile');
|
||
if ($GLOBALS['lockLock']->acquire() || $GLOBALS['lockLock']->getLockStatus()){
|
||
if (@filectime($this->resource) < $maxAge) {
|
||
@unlink($this->resource);
|
||
$this->sysLog('Unlink stale lockfile');
|
||
}
|
||
}
|
||
$GLOBALS['lockLock']->release();
|
||
}
|
||
$isAcquired = FALSE;
|
||
... | ... | |
$filepointer = @fopen($this->resource, 'x');
|
||
if ($filepointer !== FALSE) {
|
||
fclose($filepointer);
|
||
$this->sysLog('Lock aquired');
|
||
$this->sysLog('Lock acquired');
|
||
$noWait = ($i === 0);
|
||
$isAcquired = TRUE;
|
||
break;
|
||
... | ... | |
}
|
||
break;
|
||
case 'semaphore':
|
||
$this->sysLog('Acquire semaphore ' . $this->id );
|
||
if (sem_acquire($this->resource)) {
|
||
// Unfortunately it seems not possible to find out if the request was blocked, so we return FALSE in any case to make sure the operation is tried again.
|
||
$noWait = FALSE;
|
||
... | ... | |
* @return boolean Returns TRUE on success or FALSE on failure
|
||
*/
|
||
public function release() {
|
||
if (!$this->isAcquired) {
|
||
if (!$this->isAcquired&& !$this->destruct) {
|
||
return TRUE;
|
||
}
|
||
$success = TRUE;
|
||
switch ($this->method) {
|
||
case 'simple':
|
||
if (unlink($this->resource) == FALSE) {
|
||
if ($GLOBALS['lockLock']->acquire() || $GLOBALS['lockLock']->getLockStatus()){
|
||
switch ($this->method) {
|
||
case 'simple':
|
||
if (unlink($this->resource) == FALSE) {
|
||
$success = FALSE;
|
||
}
|
||
break;
|
||
case 'flock':
|
||
if (flock($this->filepointer, LOCK_UN) == FALSE) {
|
||
$success = FALSE;
|
||
}
|
||
fclose($this->filepointer);
|
||
unlink($this->resource);
|
||
break;
|
||
case 'semaphore':
|
||
if (@sem_release($this->resource)) {
|
||
sem_remove($this->resource);
|
||
} else {
|
||
$success = FALSE;
|
||
}
|
||
break;
|
||
case 'disable':
|
||
$success = FALSE;
|
||
}
|
||
break;
|
||
case 'flock':
|
||
if (flock($this->filepointer, LOCK_UN) == FALSE) {
|
||
$success = FALSE;
|
||
}
|
||
fclose($this->filepointer);
|
||
unlink($this->resource);
|
||
break;
|
||
case 'semaphore':
|
||
if (@sem_release($this->resource)) {
|
||
sem_remove($this->resource);
|
||
} else {
|
||
$success = FALSE;
|
||
}
|
||
break;
|
||
case 'disable':
|
||
$success = FALSE;
|
||
break;
|
||
break;
|
||
}
|
||
}
|
||
$GLOBALS['lockLock']->release();
|
||
$this->isAcquired = FALSE;
|
||
return $success;
|
||
}
|
||
/**
|
||
* Return the locking method which is currently used
|
||
*
|
||
* @return string Locking method
|
||
*/
|
||
public function getMethod() {
|
||
return $this->method;
|
||
}
|
||
/**
|
||
* Return the ID which is currently used
|
||
*
|
||
* @return string Locking ID
|
||
*/
|
||
public function getId() {
|
||
return $this->id;
|
||
}
|
||
/**
|
||
* Return the resource which is currently used.
|
||
* Depending on the locking method this can be a filename or a semaphore resource.
|
||
*
|
||
* @return mixed Locking resource (filename as string or semaphore as resource)
|
||
*/
|
||
public function getResource() {
|
||
return $this->resource;
|
||
}
|
||
/**
|
||
* Return the status of a lock
|
||
*
|
||
* @return string Returns TRUE if lock is acquired, FALSE otherwise
|
||
*/
|
||
public function getLockStatus() {
|
||
return $this->isAcquired;
|
||
}
|
||
/**
|
||
* Adds a common log entry for this locking API using t3lib_div::sysLog().
|
||
* Example: 25-02-08 17:58 - cms: Locking [simple::0aeafd2a67a6bb8b9543fb9ea25ecbe2]: Acquired
|
||
*
|
||
* @param string $message: The message to be logged
|
||
* @param integer $severity: Severity - 0 is info (default), 1 is notice, 2 is warning, 3 is error, 4 is fatal error
|
||
* @return void
|
||
*/
|
||
public function sysLog($message, $severity = 0) {
|
||
t3lib_div::sysLog('Locking [' . $this->method . '::' . $this->id . ']: ' . trim($message), 'cms', $severity);
|
||
}
|
||
}
|
||
t3lib/class.t3lib_lock_static.php (revision 0) | ||
---|---|---|
<?php
|
||
/***************************************************************
|
||
* Copyright notice
|
||
*
|
||
* (c) 2008-2010 Michael Stucki (michael@typo3.org)
|
||
* 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!
|
||
***************************************************************/
|
||
/**
|
||
* Class for providing locking features in TYPO3
|
||
*
|
||
* $Id: class.t3lib_lock.php 9758 2010-12-05 11:25:36Z stephenking $
|
||
*
|
||
* @author Michael Stucki <michael@typo3.org>
|
||
*/
|
||
class t3lib_lock_static extends t3lib_abstract_lock {
|
||
/**
|
||
* Constructor:
|
||
* initializes locking, check input parameters and set variables accordingly.
|
||
*
|
||
* @param string ID to identify this lock in the system
|
||
* @param string Define which locking method to use. Defaults to "simple".
|
||
* @param integer Number of times a locked resource is tried to be acquired. This is only used by manual locks like the "simple" method.
|
||
* @param integer Milliseconds after lock acquire is retried. $loops * $step results in the maximum delay of a lock. Only used by manual locks like the "simple" method.
|
||
* @return boolean Returns true unless something went wrong
|
||
*/
|
||
public function __construct($id, $method = '', $loops = 0, $step = 0) {
|
||
$res=parent::__construct($id,$method,$loops,$step);
|
||
parent::sysLog("Static semaphore " . $this->id);
|
||
return $res;
|
||
}
|
||
/**
|
||
* Acquire a lock and return when successful. If the lock is already open, the client will be
|
||
*
|
||
* It is important to know that the lock will be acquired in any case, even if the request was blocked first. Therefore, the lock needs to be released in every situation.
|
||
*
|
||
* @return boolean Returns true if lock could be acquired without waiting, false otherwise.
|
||
*/
|
||
public function acquire() {
|
||
$noWait = TRUE; // Default is TRUE, which means continue without caring for other clients. In the case of TYPO3s cache management, this has no negative effect except some resource overhead.
|
||
$isAcquired = TRUE;
|
||
switch ($this->method) {
|
||
case 'simple':
|
||
if (is_file($this->resource)) {
|
||
$this->sysLog('Waiting for a different process to release the lock');
|
||
$maxExecutionTime = ini_get('max_execution_time');
|
||
$maxAge = time() - 3*($maxExecutionTime ? $maxExecutionTime : 120);
|
||
if (@filectime($this->resource) < $maxAge) {
|
||
@unlink($this->resource);
|
||
$this->sysLog('Unlink stale lockfile');
|
||
}
|
||
}
|
||
$isAcquired = FALSE;
|
||
for ($i = 0; $i < $this->loops; $i++) {
|
||
$filepointer = @fopen($this->resource, 'x');
|
||
if ($filepointer !== FALSE) {
|
||
fclose($filepointer);
|
||
$this->sysLog('Lock acquired');
|
||
$noWait = ($i === 0);
|
||
$isAcquired = TRUE;
|
||
break;
|
||
}
|
||
usleep($this->step * 1000);
|
||
}
|
||
if (!$isAcquired) {
|
||
throw new Exception('Lock file could not be created');
|
||
}
|
||
break;
|
||
case 'flock':
|
||
if (($this->filepointer = fopen($this->resource, 'w+')) == FALSE) {
|
||
throw new Exception('Lock file could not be opened');
|
||
}
|
||
if (flock($this->filepointer, LOCK_EX | LOCK_NB) == TRUE) { // Lock without blocking
|
||
$noWait = TRUE;
|
||
} elseif (flock($this->filepointer, LOCK_EX) == TRUE) { // Lock with blocking (waiting for similar locks to become released)
|
||
$noWait = FALSE;
|
||
} else {
|
||
throw new Exception('Could not lock file "' . $this->resource . '"');
|
||
}
|
||
break;
|
||
case 'semaphore':
|
||
$this->sysLog('Static semaphore ' . $this->id );
|
||
if (sem_acquire($this->resource)) {
|
||
$this->sysLog('Static semaphore ' . $this->id );
|
||
// Unfortunately it seems not possible to find out if the request was blocked, so we return FALSE in any case to make sure the operation is tried again.
|
||
$noWait = FALSE;
|
||
}
|
||
break;
|
||
case 'disable':
|
||
$noWait = FALSE;
|
||
$isAcquired = FALSE;
|
||
break;
|
||
}
|
||
$this->isAcquired = $isAcquired;
|
||
return $noWait;
|
||
}
|
||
/**
|
||
* Release the lock
|
||
*
|
||
* @return boolean Returns TRUE on success or FALSE on failure
|
||
*/
|
||
public function release() {
|
||
$this->sysLog('Release static semaphore ' . $this->id );
|
||
if (!$this->isAcquired&& !$this->destruct) {
|
||
return TRUE;
|
||
}
|
||
$success = TRUE;
|
||
switch ($this->method) {
|
||
case 'simple':
|
||
if (unlink($this->resource) == FALSE) {
|
||
$success = FALSE;
|
||
}
|
||
break;
|
||
case 'flock':
|
||
if (flock($this->filepointer, LOCK_UN) == FALSE) {
|
||
$success = FALSE;
|
||
}
|
||
fclose($this->filepointer);
|
||
break;
|
||
case 'semaphore':
|
||
$this->sysLog('Release static semaphore ' . $this->id );
|
||
if (@sem_release($this->resource)) {
|
||
} else {
|
||
$success = FALSE;
|
||
}
|
||
break;
|
||
case 'disable':
|
||
$success = FALSE;
|
||
break;
|
||
}
|
||
$this->isAcquired = FALSE;
|
||
return $success;
|
||
}
|
||
}
|
||
if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_lock_static.php'])) {
|
||
include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_lock_static.php']);
|
||
}
|
||
?>
|
t3lib/core_autoload.php (working copy) | ||
---|---|---|
$t3libClasses = array(
|
||
'gzip_encode' => PATH_t3lib . 'class.gzip_encode.php',
|
||
't3lib_abstract_lock' => PATH_t3lib . 'class.t3lib_abstract_lock.php',
|
||
't3lib_admin' => PATH_t3lib . 'class.t3lib_admin.php',
|
||
't3lib_ajax' => PATH_t3lib . 'class.t3lib_ajax.php',
|
||
't3lib_arraybrowser' => PATH_t3lib . 'class.t3lib_arraybrowser.php',
|
||
... | ... | |
't3lib_loaddbgroup' => PATH_t3lib . 'class.t3lib_loaddbgroup.php',
|
||
't3lib_loadmodules' => PATH_t3lib . 'class.t3lib_loadmodules.php',
|
||
't3lib_lock' => PATH_t3lib . 'class.t3lib_lock.php',
|
||
't3lib_lock_static' => PATH_t3lib . 'class.t3lib_lock_static.php',
|
||
't3lib_matchcondition' => PATH_t3lib . 'class.t3lib_matchcondition.php',
|
||
't3lib_message_abstractmessage' => PATH_t3lib . 'message/class.t3lib_message_abstractmessage.php',
|
||
't3lib_message_errorpagemessage' => PATH_t3lib . 'message/class.t3lib_message_errorpagemessage.php',
|
||
... | ... | |
't3lib_tceformsinlinehook' => PATH_t3lib . 'interfaces/interface.t3lib_tceformsinlinehook.php',
|
||
't3lib_tcemain_checkmodifyaccesslisthook' => PATH_t3lib . 'interfaces/interface.t3lib_tcemain_checkmodifyaccesslisthook.php',
|
||
't3lib_tcemain_processuploadhook' => PATH_t3lib . 'interfaces/interface.t3lib_tcemain_processuploadhook.php',
|
||
't3lib_mail_mboxtransport' => PATH_t3lib . 'mail/class.t3lib_mail_mboxtransport.php',
|
||
't3lib_mail_mboxtransport' => PATH_t3lib . 'mail/class.t3lib_mail_mboxtransport.php',
|
||
't3lib_mail_message' => PATH_t3lib . 'mail/class.t3lib_mail_message.php',
|
||
't3lib_mail_mailer' => PATH_t3lib . 'mail/class.t3lib_mail_mailer.php',
|
||
'tx_t3lib_mail_hooks' => PATH_t3lib . 'mail/class.tx_t3lib_mail_hooks.php',
|