Project

General

Profile

Bug #23467 ยป 15580.diff

Administrator Admin, 2010-08-27 23:02

View differences:

t3lib/class.t3lib_sqlengine.php (Arbeitskopie)
/**
* Constrcutor
*/
function __construct() {
t3lib_div::deprecationLog("Class t3lib_sqlengine is deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, it has been integrated to extension DBAL.");
}
/**
......
var $TYPO3_DBAL_handlerType = '';
var $TYPO3_DBAL_tableList = '';
/**
* Constrcutor
*/
function __construct() {
t3lib_div::deprecationLog("Class t3lib_sqlengine_resultobj is deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, it has been integrated to extension DBAL.");
}
/**
* Counting number of rows
t3lib/class.t3lib_htmlmail.php (Arbeitskopie)
* @deprecated since TYPO3 4.0, remove in TYPO 4.3
*/
public function quoted_printable($string) {
t3lib_div::logDeprecatedFunction();
return t3lib_div::quoted_printable($string, 76);
}
......
* @deprecated since TYPO3 4.0, remove in TYPO3 4.3
*/
public function convertName($name) {
t3lib_div::logDeprecatedFunction();
return $name;
}
}
t3lib/class.t3lib_userauth.php (Arbeitskopie)
* @ignore
*/
function redirect() {
t3lib_div::logDeprecatedFunction();
if (!$this->userid && $this->auth_url) { // if no userid AND an include-document for login is given
t3lib_div::deprecationLog('Redirection after login via PHP include is deprecated.');
include ($this->auth_include);
typo3/alt_palette.php (Arbeitskopie)
* @return string HTML output
*/
function printPalette($palArr) {
t3lib_div::logDeprecatedFunction();
$out='';
// For each element on the palette, write a few table cells with the field name, content and control images:
typo3/contrib/json/json.php (Arbeitskopie)
*/
class Services_JSON
{
/**
* Constructor
*/
function __construct() {
t3lib_div::deprecationLog("Class Services_JSON - since TYPO3 4.3, will be removed in TYPO3 4.5");
}
/**
* constructs a new JSON instance
*
typo3/contrib/RemoveXSS/RemoveXSS.php (Arbeitskopie)
* @deprecated since TYPO3 4.3, use static call RemoveXSS::process() instead
*/
public function RemoveXSS($val, $replaceString = '<x>') {
t3lib_div::logDeprecatedFunction();
return self::process($val, $replaceString);
}
typo3/template.php (Arbeitskopie)
* @deprecated since TYPO3 3.6
*/
function middle() {
t3lib_div::logDeprecatedFunction();
}
/**
typo3/sysext/simulatestatic/class.tx_simulatestatic.php (Arbeitskopie)
* @deprecated since TYPO3 4.3, will be deleted in TYPO3 4.5
*/
public function makeSimulatedFileNameCompat(array &$parameters, tslib_fe &$parentObject) {
t3lib_div::logDeprecatedFunction();
return $this->makeSimulatedFileName(
$parameters['inTitle'],
$parameters['page'],
typo3/sysext/cms/tslib/class.tslib_fe.php (Arbeitskopie)
* @todo Deprecated but still used in the Core!
*/
function makeSimulFileName($inTitle, $page, $type, $addParams = '', $no_cache = false) {
t3lib_div::logDeprecatedFunction();
if (t3lib_extMgm::isLoaded('simulatestatic')) {
$parameters = array(
'inTitle' => $inTitle,
......
* @todo Deprecated but still used in the Core!
*/
function getSimulFileName() {
t3lib_div::logDeprecatedFunction();
return $this->makeSimulFileName(
$this->page['title'],
($this->page['alias'] ? $this->page['alias'] : $this->id),
typo3/sysext/cms/tslib/class.tslib_pibase.php (Arbeitskopie)
* @return mixed The query build.
* @access private
* @deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.5, use pi_exec_query() instead!
* @todo Deprecated but still used in the Core!
*/
function pi_list_query($table,$count=0,$addWhere='',$mm_cat='',$groupBy='',$orderBy='',$query='',$returnQueryArray=FALSE) {
// Begin Query:
if (!$query) {
// Fetches the list of PIDs to select from.
typo3/sysext/cms/tslib/class.tslib_content.php (Arbeitskopie)
* @deprecated since TYPO3 3.6 - Use $GLOBALS['TYPO3_DB']->listQuery() directly!
*/
function whereSelectFromList($field,$value) {
t3lib_div::logDeprecatedFunction();
return $GLOBALS['TYPO3_DB']->listQuery($field,$value,'');
}
typo3/sysext/cms/tslib/class.tslib_feuserauth.php (Arbeitskopie)
// @deprecated: Check for commerce basket records. The following lines should be removed once a fixed commerce version is released.
// Extensions like commerce which have their own session table should just put some small bit of data into fe_session_data using $GLOBALS['TSFE']->fe_user->setKey('ses', ...) to make the session stable.
if ($count == false && t3lib_extMgm::isLoaded('commerce')) {
t3lib_div::deprecationLog("EXT:commerce specific code in tslib_feuserauth::isExistingSessionRecord() is deprecated. Will be removed in 4.6");
$dbres = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
'*',
'tx_commerce_baskets',
typo3/sysext/tstemplate/ts/index.php (Arbeitskopie)
* @deprecated since TYPO3 4.2.0
*/
function getCountCacheTables($humanReadable) {
t3lib_div::logDeprecatedFunction();
$out = array();
$out['cache_pages'] = $GLOBALS['TYPO3_DB']->exec_SELECTcountRows('id', 'cache_pages');
typo3/sysext/dbal/class.ux_t3lib_db.php (Arbeitskopie)
* @deprecated since TYPO3 4.0
*/
public function quoteSelectFields($select_fields) {
t3lib_div::logDeprecatedFunction();
$this->quoteFieldNames($select_fields);
}
......
* @deprecated since TYPO3 4.1
*/
public function sql($db,$query) {
t3lib_div::logDeprecatedFunction();
return $this->sql_query($query);
}
typo3/alt_clickmenu.php (Arbeitskopie)
* @deprecated since TYPO3 4.0 - Use DB_editPageProperties instead
*/
function DB_editPageHeader($uid) {
t3lib_div::logDeprecatedFunction();
return $this->DB_editPageProperties($uid);
}
    (1-1/1)