Project

General

Profile

Bug #21651 » flash-msg-changelog v3.patch

Administrator Admin, 2009-11-23 18:47

View differences:

typo3/alt_db_navframe.php (Arbeitskopie)
// Outputting Temporary DB mount notice:
if ($this->active_tempMountPoint) {
$flashText = '
<a href="' . htmlspecialchars(t3lib_div::linkThisScript(array('setTempDBmount' => 0))) . '">' .
$LANG->sl('LLL:EXT:lang/locallang_core.xml:labels.temporaryDBmount',1) .
'</a> <br />' .
$LANG->sl('LLL:EXT:lang/locallang_core.xml:labels.path',1) . ': <span title="' .
htmlspecialchars($this->active_tempMountPoint['_thePathFull']) . '">' .
htmlspecialchars(t3lib_div::fixed_lgd_cs($this->active_tempMountPoint['_thePath'],-50)).
'</span>
';
$flashMessage = t3lib_div::makeInstance(
't3lib_FlashMessage',
$flashText,
'',
t3lib_FlashMessage::INFO
);
$this->content.= '
<div class="bgColor4 c-notice">
<img'.t3lib_iconWorks::skinImg('','gfx/icon_note.gif','width="18" height="16"').' align="top" alt="" />'.
'<a href="'.htmlspecialchars(t3lib_div::linkThisScript(array('setTempDBmount' => 0))).'">'.
$LANG->sl('LLL:EXT:lang/locallang_core.xml:labels.temporaryDBmount',1).
'</a><br />
'.$LANG->sl('LLL:EXT:lang/locallang_core.xml:labels.path',1).': <span title="'.htmlspecialchars($this->active_tempMountPoint['_thePathFull']).'">'.htmlspecialchars(t3lib_div::fixed_lgd_cs($this->active_tempMountPoint['_thePath'],-50)).'</span>
' .$flashMessage->render() .'
</div>
';
}
typo3/mod/tools/em/class.em_index.php (Arbeitskopie)
$eC=2;
}
if (!$this->fe_user['username']) {
$content .= '<br /><br /><img src="' . $GLOBALS['BACK_PATH'] .
'gfx/icon_note.gif" width="18" height="16" align="top" alt="" />' .
$flashMessage = t3lib_div::makeInstance(
't3lib_FlashMessage',
sprintf($GLOBALS['LANG']->getLL('ext_details_no_username'),
'<a href="index.php?SET[function]=3">', '</a>'
) .
'<br />';
),
'',
t3lib_FlashMessage::INFO
);
$content .= '<br />' . $flashMessage->render();
}
}
$this->content .= $this->doc->section(
typo3/mod/web/func/index.php (Arbeitskopie)
$markers['CONTENT'] = $this->content;
} else {
// If no access or if ID == zero
$this->content = $this->doc->section($LANG->getLL('title'), $LANG->getLL('clickAPage_content'), 0, 1);
$flashMessage = t3lib_div::makeInstance(
't3lib_FlashMessage',
$LANG->getLL('clickAPage_content'),
$LANG->getLL('title'),
t3lib_FlashMessage::INFO
);
$this->content = $flashMessage->render();
// Setting up the buttons and markers for docheader
$docHeaderButtons = $this->getButtons();
$markers['CSH'] = $docHeaderButtons['csh'];
typo3/sysext/cms/layout/db_layout.php (Arbeitskopie)
if (top.fsMod) top.fsMod.recentIds["web"] = '.intval($this->id).';
');
$body = $this->doc->section($LANG->getLL('clickAPage_header'), $LANG->getLL('clickAPage_content'), 0, 1);
$flashMessage = t3lib_div::makeInstance(
't3lib_FlashMessage',
$LANG->getLL('clickAPage_content'),
$LANG->getLL('clickAPage_header'),
t3lib_FlashMessage::INFO
);
$body = $flashMessage->render();
// Setting up the buttons and markers for docheader
$docHeaderButtons = array(
typo3/sysext/setup/mod/index.php (Arbeitskopie)
// Notice
$this->content .= $this->doc->spacer(30);
$this->content .= $this->doc->section('', $LANG->getLL('activateChanges'));
$flashMessage = t3lib_div::makeInstance(
't3lib_FlashMessage',
$LANG->getLL('activateChanges'),
'',
t3lib_FlashMessage::INFO
);
$this->content .= $flashMessage->render();
// Setting up the buttons and markers for docheader
$docHeaderButtons = $this->getButtons();
(4-4/7)