Project

General

Profile

Feature #15371 » class.tslib_content.php.diff-ub (stdWrap).diff

Administrator Admin, 2006-01-17 10:32

View differences:

class.tslib_content.php 17 Jan 2006 09:28:20 -0000
$conf['allow']='new';
}
if ($conf['newRecordInPid']) $nPid = $conf['newRecordInPid'];
if ($conf['newRecordInPid.']) $nPid = $this->stdWrap($conf['newRecordInPid'],$conf['newRecordInPid.']);
if (!intval($nPid)) unset($nPid);
if (!$currentRecord) $currentRecord=$this->currentRecord;
if (!count($dataArr)) $dataArr=$this->data;
list($table,$uid) = explode(':',$currentRecord);
......
$mayEdit = count($allow)&&($perms&16);
if ($conf['newRecordFromTable']) {
$newUid=$GLOBALS['TSFE']->id;
if ($nPid) {
$newUid=$nPid;
}
} else {
$newUid = -1*$uid;
}
......
}
if (isset($allow['new'])) {
if ($table=='pages') {
$panel.=$this->editPanelLinkWrap('<img src="t3lib/gfx/new_page.gif" width="13" height="12" vspace="1" hspace="2" border="0" title="'.$BE_USER->extGetLL('p_newSubpage').'" align="top" alt="" title="" />',$formName,'new',$currentRecord);
$panel.=$this->editPanelLinkWrap('<img src="t3lib/gfx/new_page.gif" width="13" height="12" vspace="1" hspace="2" border="0" title="'.$BE_USER->extGetLL('p_newSubpage').'" align="top" alt="" title="" />',$formName,'new',$currentRecord,'',$nPid);
} else {
$panel.=$this->editPanelLinkWrap('<img src="t3lib/gfx/new_record.gif" width="16" height="12" vspace="1" hspace="2" border="0" title="'.$BE_USER->extGetLL('p_newRecordAfter').'" align="top" alt="" title="" />',$formName,'new',$currentRecord);
$panel.=$this->editPanelLinkWrap('<img src="t3lib/gfx/new_record.gif" width="16" height="12" vspace="1" hspace="2" border="0" title="'.$BE_USER->extGetLL('p_newRecordAfter').'" align="top" alt="" title="" />',$formName,'new',$currentRecord,'',$nPid);
}
}
if (isset($allow['delete'])) {$panel.=$this->editPanelLinkWrap('<img src="t3lib/gfx/delete_record.gif" width="12" height="12" vspace="1" hspace="2" border="0" title="'.$BE_USER->extGetLL('p_delete').'" align="top" alt="" title="" />',$formName,'delete','',$BE_USER->extGetLL('p_deleteConfirm')); }
......
* @access private
* @see editPanel(), editIcons(), t3lib_tsfeBeUserAuth::extEditAction()
*/
function editPanelLinkWrap($string,$formName,$cmd,$currentRecord='',$confirm='') {
function editPanelLinkWrap($string,$formName,$cmd,$currentRecord='',$confirm='',$nPid='') {
$eFONPage = $GLOBALS['BE_USER']->uc['TSFE_adminConfig']['edit_editFormsOnPage'];
$nV=t3lib_div::_GP('ADMCMD_view')?1:0;
$adminURL = t3lib_div::getIndpEnv('TYPO3_SITE_URL').TYPO3_mainDir;
......
if ($rParts[0]=='pages') {
$out=$this->editPanelLinkWrap_doWrap($string,$adminURL.'db_new.php?id='.$rParts[1].'&pagesOnly=1',$currentRecord);
} else {
if (!intval($nPid)) {
$nPid = t3lib_div::testInt($rParts[1]) ? -$rParts[1] : $GLOBALS['TSFE']->id;
}
$out=$this->editPanelLinkWrap_doWrap($string,$adminURL.'alt_doc.php?edit['.$rParts[0].']['.$nPid.']=new&noView='.$nV,$currentRecord);
}
} else {
(4-4/5)