Project

General

Profile

Bug #23602 » 15798.patch

Administrator Admin, 2010-10-14 12:20

View differences:

ChangeLog (Arbeitskopie)
2010-10-14 Benjamin Mack <benni@typo3.org>
* Fixed bug #15798: Deprecate some old functions in typo3/template.php
* Fixed bug #15801: Deprecate t3lib_div::rm_endcomma
* Fixed bug #103: No Plain-text List Option
typo3/classes/class.typo3logo.php (Arbeitskopie)
$imgInfo = getimagesize(PATH_site . TYPO3_mainDir . $logoFile);
$logo = '<a href="http://www.typo3.com/" target="_blank" onclick="'.$GLOBALS['TBE_TEMPLATE']->thisBlur().'">'.
$logo = '<a href="http://www.typo3.com/" target="_blank">'.
'<img'.t3lib_iconWorks::skinImg('', $logoFile, $imgInfo[3]).' title="TYPO3 Content Management System" alt="" />'.
'</a>';
// overwrite with custom logo
if($GLOBALS['TBE_STYLES']['logo']) {
$imgInfo = @getimagesize(t3lib_div::resolveBackPath(PATH_typo3 . $GLOBALS['TBE_STYLES']['logo'], 3));
$logo = '<a href="http://www.typo3.com/" target="_blank" onclick="' . $GLOBALS['TBE_TEMPLATE']->thisBlur() . '">' .
$logo = '<a href="http://www.typo3.com/" target="_blank">' .
'<img src="' . $GLOBALS['TBE_STYLES']['logo'] . '" ' . $imgInfo[3] . ' title="TYPO3 Content Management System" alt="" />' .
'</a>';
}
typo3/template.php (Arbeitskopie)
* Use this in links to remove the underlining after being clicked
*
* @return string
* @deprecated since TYPO3 4.5, will be removed in TYPO3 4.7
*/
function thisBlur() {
t3lib_div::logDeprecatedFunction();
return ($GLOBALS['CLIENT']['FORMSTYLE']?'this.blur();':'');
}
......
* Use for <a>-links to help texts
*
* @return string
* @deprecated since TYPO3 4.5, will be removed in TYPO3 4.7
*/
function helpStyle() {
t3lib_div::logDeprecatedFunction();
return $GLOBALS['CLIENT']['FORMSTYLE'] ? ' style="cursor:help;"':'';
}
typo3/backend.php (Arbeitskopie)
* @return string HTML code snippet to display the TYPO3 logo
*/
protected function getLogo() {
$logo = '<a href="http://www.typo3.com/" target="_blank" onclick="'.$GLOBALS['TBE_TEMPLATE']->thisBlur().'">'.
$logo = '<a href="http://www.typo3.com/" target="_blank">'.
'<img'.t3lib_iconWorks::skinImg('','gfx/alt_backend_logo.gif','width="117" height="32"').' title="TYPO3 Content Management Framework" alt="" />'.
'</a>';
......
if(substr($GLOBALS['TBE_STYLES']['logo'], 0, 3) == '../') {
$imgInfo = @getimagesize(PATH_site.substr($GLOBALS['TBE_STYLES']['logo'], 3));
}
$logo = '<a href="http://www.typo3.com/" target="_blank" onclick="'.$GLOBALS['TBE_TEMPLATE']->thisBlur().'">'.
$logo = '<a href="http://www.typo3.com/" target="_blank">'.
'<img src="'.$GLOBALS['TBE_STYLES']['logo'].'" '.$imgInfo[3].' title="TYPO3 Content Management Framework" alt="" />'.
'</a>';
}
typo3/sysext/wizard_crpages/class.tx_wizardcrpages_webfunc_2.php (Arbeitskopie)
* @return string HTML code for a help-bubble image.
*/
function helpBubble() {
return '<img src="'.$GLOBALS['BACK_PATH'].'gfx/helpbubble.gif" width="14" height="14" hspace="2" align="top"'.$this->pObj->doc->helpStyle().' alt="" />';
return '<img src="'.$GLOBALS['BACK_PATH'].'gfx/helpbubble.gif" width="14" height="14" hspace="2" align="top" alt="" />';
}
/**
typo3/sysext/cms/layout/db_new_content_el.php (Arbeitskopie)
// Radio button:
$oC = "document.editForm.defValues.value=unescape('".rawurlencode($wInfo['params'])."');goToalt_doc();".(!$this->onClickEvent?"window.location.hash='#sel2';":'');
$content .= $this->elementWrapper['wizardPart'][0] .
'<input type="radio" name="tempB" value="' . htmlspecialchars($k) . '" onclick="' . htmlspecialchars($this->doc->thisBlur().$oC) . '" />' .
'<input type="radio" name="tempB" value="' . htmlspecialchars($k) . '" onclick="' . htmlspecialchars($oC) . '" />' .
$this->elementWrapper['wizardPart'][1];
// Onclick action for icon/title:
$aOnClick = 'document.getElementsByName(\'tempB\')['.$cc.'].checked=1;'.$this->doc->thisBlur().$oC.'return false;';
$aOnClick = 'document.getElementsByName(\'tempB\')['.$cc.'].checked=1;'.$oC.'return false;';
// Icon:
$iInfo = @getimagesize($wInfo['icon']);
(2-2/2)