Project

General

Profile

Bug #22887 » 14733_complete.diff

Administrator Admin, 2010-06-16 09:29

View differences:

t3lib/stddb/tables.php (Arbeitskopie)
'actions-edit-restore',
'actions-system-extension-import',
'actions-edit-upload',
'actions-edit-insert-default',
'actions-view-table-expand',
'actions-document-open',
'actions-document-localize',
t3lib/class.t3lib_clipboard.php (Arbeitskopie)
// Upper header
$out[]='
<tr class="bgColor2">
<td colspan="3" nowrap="nowrap" align="center"><span class="uppercase"><strong>'.$this->clLabel('clipboard','buttons').'</strong></span></td>
<tr class="t3-row-header">
<td colspan="3" nowrap="nowrap" align="center"><strong>' . $this->clLabel('clipboard', 'buttons') . '</strong></td>
</tr>';
// Button/menu header:
......
$fI = pathinfo($v);
$icon = is_dir($v) ? 'folder.gif' : t3lib_BEfunc::getFileIcon(strtolower($fI['extension']));
$size = ' ('.t3lib_div::formatSize(filesize($v)).'bytes)';
$icon = '<img'.t3lib_iconWorks::skinImg($this->backPath,'gfx/fileicons/'.$icon,'width="18" height="16"').' border="0" hspace="20" class="absmiddle" title="'.htmlspecialchars($fI['basename'].$size).'" alt="" />';
$icon = t3lib_iconWorks::getSpriteIconForFile(is_dir($v) ? 'folder' : strtolower($fI['extension']), array('style' => 'margin: 0 20px;', 'title' => htmlspecialchars($fI['basename'] . $size)));
$thumb = $this->clipData['_setThumb'] ? (t3lib_div::inList($GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],$fI['extension']) ? t3lib_BEfunc::getThumbNail($this->backPath.'thumbs.php',$v,' vspace="4"') : '') :'';
$lines[]='
......
<td class="'.$bgColClass.'" nowrap="nowrap" width="95%">&nbsp;'.$this->linkItemText(htmlspecialchars(t3lib_div::fixed_lgd_cs(basename($v),$GLOBALS['BE_USER']->uc['titleLen'])),$v).
($pad=='normal'?(' <strong>('.($this->clipData['normal']['mode']=='copy'?$this->clLabel('copy','cm'):$this->clLabel('cut','cm')).')</strong>'):'').'&nbsp;'.($thumb?'<br />'.$thumb:'').'</td>
<td class="'.$bgColClass.'" align="center" nowrap="nowrap">'.
'<a href="#" onclick="'.htmlspecialchars('top.launchView(\''.$v.'\', \'\'); return false;').'"><img'.t3lib_iconWorks::skinImg($this->backPath,'gfx/zoom2.gif','width="12" height="12"').' hspace="2" border="0" title="'.$this->clLabel('info','cm').'" alt="" /></a>'.
'<a href="'.htmlspecialchars($this->removeUrl('_FILE',t3lib_div::shortmd5($v))).'#clip_head"><img'.t3lib_iconWorks::skinImg($this->backPath,'gfx/close_12h.gif','width="11" height="12"').' border="0" title="'.$this->clLabel('removeItem').'" alt="" /></a>'.
'<a href="#" onclick="' . htmlspecialchars('top.launchView(\'' . $v . '\', \'\'); return false;') . '">' . t3lib_iconWorks::getSpriteIcon('actions-document-info', array('title' => $this->clLabel('info', 'cm'))) . '</a>'.
'<a href="' . htmlspecialchars($this->removeUrl('_FILE', t3lib_div::shortmd5($v))) . '#clip_head">' . t3lib_iconWorks::getSpriteIcon('actions-selection-delete', array('title' => $this->clLabel('removeItem'))) . '</a>'.
'</td>
</tr>';
} else {
......
if (is_array($rec)) {
$lines[]='
<tr>
<td class="'.$bgColClass.'">'.$this->linkItemText(t3lib_iconWorks::getIconImage($table,$rec,$this->backPath,'hspace="20" title="'.htmlspecialchars(t3lib_BEfunc::getRecordIconAltText($rec,$table)).'"'),$rec,$table).'</td>
<td class="' . $bgColClass . '">' . $this->linkItemText(t3lib_iconWorks::getSpriteIconForRecord($table, $rec, array('style' => 'margin: 0 20px;', 'title' => htmlspecialchars(t3lib_BEfunc::getRecordIconAltText($rec, $table)))), $rec, $table) . '</td>
<td class="'.$bgColClass.'" nowrap="nowrap" width="95%">&nbsp;'.$this->linkItemText(htmlspecialchars(t3lib_div::fixed_lgd_cs(t3lib_BEfunc::getRecordTitle($table,$rec),$GLOBALS['BE_USER']->uc['titleLen'])),$rec,$table).
($pad=='normal'?(' <strong>('.($this->clipData['normal']['mode']=='copy'?$this->clLabel('copy','cm'):$this->clLabel('cut','cm')).')</strong>'):'').'&nbsp;</td>
<td class="'.$bgColClass.'" align="center" nowrap="nowrap">'.
'<a href="#" onclick="'.htmlspecialchars('top.launchView(\''.$table.'\', \''.intval($uid).'\'); return false;').'"><img'.t3lib_iconWorks::skinImg($this->backPath,'gfx/zoom2.gif','width="12" height="12"').' hspace="2" border="0" title="'.$this->clLabel('info','cm').'" alt="" /></a>'.
'<a href="'.htmlspecialchars($this->removeUrl($table,$uid)).'#clip_head"><img'.t3lib_iconWorks::skinImg($this->backPath,'gfx/close_12h.gif','width="11" height="12"').' border="0" title="'.$this->clLabel('removeItem').'" alt="" /></a>'.
'<a href="#" onclick="' . htmlspecialchars('top.launchView(\'' . $table . '\', \'' . intval($uid) . '\'); return false;') . '">' . t3lib_iconWorks::getSpriteIcon('actions-document-info', array('title' => $this->clLabel('info','cm'))) . '</a>'.
'<a href="' . htmlspecialchars($this->removeUrl($table, $uid)) . '#clip_head">' . t3lib_iconWorks::getSpriteIcon('actions-selection-delete', array('title' => $this->clLabel('removeItem'))) . '</a>'.
'</td>
</tr>';
t3lib/class.t3lib_tsparser_ext.php (Arbeitskopie)
$RL = $this->ext_getRootlineNumber($row['pid']);
$keyArray[] = '<tr class="' . ($i++ % 2 == 0 ? 'bgColor4' : 'bgColor6') . '">
<td nowrap>' . $HTML . '</td>
<td align="center" class="bgColor5">' . ($row['root'] ? t3lib_iconWorks::getSpriteIcon('status-status-checked') : '') . '&nbsp;&nbsp;</td>
<td align="center">' . ($row['root'] ? t3lib_iconWorks::getSpriteIcon('status-status-checked') : '') . '&nbsp;&nbsp;</td>
<td align="center">' . ($row['clConf'] ? t3lib_iconWorks::getSpriteIcon('status-status-checked') :'') . '&nbsp;&nbsp;' . '</td>
<td align="center" class="bgColor5">' . ($row['clConst'] ? t3lib_iconWorks::getSpriteIcon('status-status-checked') : '') . '&nbsp;&nbsp;' . '</td>
<td align="center">' . ($row['clConst'] ? t3lib_iconWorks::getSpriteIcon('status-status-checked') : '') . '&nbsp;&nbsp;' . '</td>
<td align="center">' . ($row['pid'] ? $row['pid'] : '') . '</td>
<td align="center" class="bgColor5">' . (strcmp($RL, '') ? $RL : '') . '</td>
<td align="center">' . (strcmp($RL, '') ? $RL : '') . '</td>
<td>' . ($row['next'] ? '&nbsp;' . $row['next'] . '&nbsp;&nbsp;' : '') . '</td>
</tr>';
if ($deeper) {
typo3/class.db_list.inc (Arbeitskopie)
</tr>
</table>
'.$formElements[1];
$content.=t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'list_searchbox', $GLOBALS['BACK_PATH'],'|<br/>');
$content .= t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'list_searchbox', $GLOBALS['BACK_PATH'], '|<br />');
return $content;
}
typo3/template.php (Arbeitskopie)
$url = htmlspecialchars($def['url']);
$params = $def['addParams'];
if($first) {
$options.= '
<td width="'.$width.'%" class="'.$class.'" style="border-left: solid #000 1px;"><a href="'.$url.'" style="padding-left:5px;padding-right:2px;" '.$params.'>'.$label.'</a></td>';
} else {
$options.='
<td width="'.$width.'%" class="'.$class.'"><a href="'.$url.'" '.$params.'>'.$label.'</a></td>';
}
$options .= '<td width="' . $width . '%" class="' . $class . '"><a href="' . $url . '" ' . $params . '>' . $label . '</a></td>';
$first=false;
}
typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php (Arbeitskopie)
<tr>
<td><img src=clear.gif width=4 height=1></td>
<td class="bgColor2">
<table border=0 cellpadding=0 cellspacing=0 class="bgColor5" width="100%"><tr><td nowrap width="99%"><strong>'.$label.'</strong></td>'.$remove.'</tr></table>
<table border=0 cellpadding=0 cellspacing=0 class="bgColor5" width="100%"><tr class="t3-row-header"><td nowrap width="99%"><strong>'.$label.'</strong></td>'.$remove.'</tr></table>
</td>
</tr>
<tr>
<td><img src=clear.gif width=4 height=1></td>
<td class="bgColor2">
<table border=0 cellpadding=0 cellspacing=0 class="bgColor4" width="100%"><tr><td nowrap>'.$tree.'</td></tr></table><img src=clear.gif width=465 height=1></td>
<table border=0 cellpadding=0 cellspacing=0 class="bgColor4" width="100%"><tr><td nowrap>'.$tree.'</td></tr></table></td>
</tr>
</table>
';
typo3/sysext/t3skin/ext_tables.php (Arbeitskopie)
'MOD:user_ws/sys_workspace.gif' => array($temp_eP.'icons/module_user_ws.gif','width="22" height="22"'),
'MOD:tools/tool.gif' => array($temp_eP.'icons/module_tools.gif','width="25" height="24"'),
'MOD:tools_beuser/beuser.gif' => array($temp_eP.'icons/module_tools_user.gif','width="24" height="24"'),
'MOD:tools_em/em.gif' => array($temp_eP.'icons/module_tools_em.gif','width="24" height="24"'),
'MOD:tools_em/em.gif' => array($temp_eP.'icons/module_tools_em.png','width="24" height="24"'),
'MOD:tools_em/install.gif' => array($temp_eP.'icons/module_tools_em.gif','width="24" height="24"'),
'MOD:tools_dbint/db.gif' => array($temp_eP.'icons/module_tools_dbint.gif','width="25" height="24"'),
'MOD:tools_config/config.gif' => array($temp_eP.'icons/module_tools_config.gif','width="24" height="24"'),
......
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['preHeaderRenderHook'][] = t3lib_extMgm::extPath('t3skin').'pngfix/class.tx_templatehook.php:tx_templatehook->registerPngFix';
}
?>
?>
typo3/sysext/t3skin/extjs/xtheme-t3skin.css (Arbeitskopie)
.x-tab-strip-spacer { display: none; }
.x-tab-strip { padding-left: 10px; }
.x-panel {
border-style: solid;
border-color: #A2AAB8;
......
.x-panel-body {
border-color: #A2AAB8;
background-color:#fff;
background-color: #f1f1f1;
}
.x-panel-bbar .x-toolbar, .x-panel-tbar .x-toolbar {
typo3/sysext/t3skin/stylesheets/structure/element_version.css (Arbeitskopie)
- - - - - - - - - - - - - - - - - - - - - */
div.workspace-info {
/*margin: -10px -10px 5px -10px;*/
font-weight:bold;
padding: 3px 7px;
padding: 7px;
}
table.workspace-overview td {
......
#ver-wl-new-workspace-icon {
margin-right: 5px;
float: left;
}
}
typo3/sysext/t3skin/stylesheets/structure/element_tree.css (Arbeitskopie)
body#typo3-pagetree #typo3-inner-docbody,
body#typo3-alt-file-navframe-php #typo3-inner-docbody {
padding: 0 0 10px 5px;
padding: 0 0 10px 0;
}
ul.tree {
clear: both;
margin: 16px 0 0 5px;
margin: 16px 0 0 10px;
padding: 0;
}
typo3/sysext/t3skin/stylesheets/structure/module_web_page.css (Arbeitskopie)
position: relative;
}
.t3-page-colHeader a {
position: relative;
}
.t3-page-colHeader-icons {
position: absolute;
left: 4px;
typo3/sysext/t3skin/stylesheets/structure/element_docheader.css (Arbeitskopie)
bottom: 0;
overflow: auto;
position: absolute;
top: 51px;
top: 49px;
width: 100%;
z-index: 2;
}
......
height: 20px;
margin-left: 5px;
padding-left: 20px;
}
}
typo3/sysext/t3skin/stylesheets/structure/element_message.css (Arbeitskopie)
.typo3-message {
margin-bottom: 4px;
padding: 6px;
padding-left: 26px;
padding: 12px;
padding-left: 36px;
}
.typo3-message ul,
......
.typo3-message .message-header {
display: block;
margin-bottom: 5px;
margin-top: -1px;
}
}
typo3/sysext/t3skin/stylesheets/structure/module_web_list.css (Arbeitskopie)
padding-right: 0px;
}
/* Special treatment for searchfield on page */
#typo3-dblist-search-container {
position: relative;
}
#typo3-dblist-search input[type="submit"] {
height: 19px;
margin-left: 5px;
......
height: 8px;
padding: 4px 5px;
width: 7px;
}
}
typo3/sysext/t3skin/stylesheets/structure/element_tab.css (Arbeitskopie)
table#typo3-tabmenu td a {
display: block;
margin-top: 1px;
padding: 5px 10px 5px 10px;
margin-right: 1px;
}
table#typo3-tabmenu td.tabact a {
......
/* - - - - - - - - - - - - - - - - - - - - -
Dynamic Tab menu (template.php)
- - - - - - - - - - - - - - - - - - - - - */
div.typo3-dyntabmenu-divs {
padding: 0;
}
......
table.typo3-dyntabmenu td a {
display: block;
padding: 5px 10px 5px 10px;
margin-right: 1px;
position: relative;
top: 1px;
}
table.typo3-dyntabmenu td.tabact a,
table.typo3-dyntabmenu td.tabact_over a,
table#typo3-tabmenu td.tabact a,
table#typo3-tabmenu td.tabact_over a {
margin-top: 0px;
padding-bottom: 6px;
}
table.typo3-dyntabmenu td.tab_over a,
table#typo3-tabmenu td.tab_over a {
margin-top: 0px;
}
div.typo3-dyntabmenu-divs-foldout div.c-tablayer {
margin-left: 20px;
}
......
div.typo3-dyntabmenu-divs-foldout div.tabact_over a {
display: block;
padding: 2px 2px 2px 18px;
}
}
typo3/sysext/t3skin/stylesheets/visual/element_version.css (Arbeitskopie)
#typo3-pagetree .workspace-info {
background-color: #ffec97;
font-weight: bold;
}
table#typo3-versionSelector {
typo3/sysext/t3skin/stylesheets/visual/main_content.css (Arbeitskopie)
/* Normal section headers */
h3 {
font-size: 13px;
font-size: 12px;
}
/* Discrete section headers (no background) */
......
}
.uppercase {
text-transform: uppercase;
padding-bottom: 6px;
border-bottom: 1px solid #cdcdcd;
}
.tableheader td {
typo3/sysext/t3skin/stylesheets/visual/element_message.css (Arbeitskopie)
.typo3-message {
border: 1px solid;
background-position: 4px 4px;
background-position: 10px 12px;
background-repeat: no-repeat;
}
......
}
.message-notice {
color: #777;
background-color: #f6f7fa;
background-image: url('../../icons/gfx/notice.png');
border-color: #c2cbcf;
}
.message-notice a {
color: #777;
}
.message-information {
background-color: #ddeef9;
color: #4c73a1;
background-color: #eaf7ff;
background-image: url('../../icons/gfx/information.png');
border-color: #8aafc4;
border-color: #c5dbe6;
}
.message-information a {
color: #4c73a1;
}
.message-ok {
color: #3b7826;
background-color: #cdeaca;
background-image: url('../../icons/gfx/ok.png');
border-color: #58b548;
}
.message-ok a {
color: #3b7826;
}
.message-warning {
background-color: #fbffb3;
background-image: url('../../icons/gfx/warning.png');
border-color: #c4b70d;
color: #9e7d4a;
background-color:#fbf6de;
background-image: url("../../icons/gfx/warning.png");
border-color: #b1905c;
}
.message-warning a {
color: #9e7d4a;
}
.message-error {
background-color: #fbb19b;
color: #aa0225;
background-color: #f6d3cf;
background-image: url('../../icons/gfx/error.png');
border-color: #dc4c42;
}
border-color: #d66c68;
}
.message-error a {
color: #aa0225;
}
typo3/sysext/t3skin/stylesheets/visual/module_menu.css (Arbeitskopie)
$Id$
- - - - - - - - - - - - - - - - - - - - - */
#typo3-side-menu {
#typo3-module-menu {
background: #dddddd;
background-image: url('../../images/backgrounds/module-menu-right.gif');
background-position: right top;
background-repeat: repeat-y;
}
#typo3-menu {
#typo3-module-menu .x-panel-body {
background-color: transparent;
}
#typo3-side-menu {
background-image: url('../../images/backgrounds/module-menu-top.png');
background-position: right top;
background-repeat: no-repeat;
typo3/sysext/t3skin/stylesheets/visual/element_tab.css (Arbeitskopie)
$Id$
- - - - - - - - - - - - - - - - - - - - - */
/*
table#typo3-tabmenu td.tabact {
color: black;
background: #e7dba8;
border: solid black 1px;
}
table#typo3-tabmenu td.tab {
background: #c4d4cd;
border: solid #555 1px;
border-left: solid #aaa 3px;
color: #666;
}
table#typo3-tabmenu td.tab,
table#typo3-tabmenu td.tabact {
border-bottom: 0px;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
table.typo3-dyntabmenu td a,
table#typo3-tabmenu td a {
color: #666;
text-decoration: none;
}
table#typo3-tabmenu td.tabact a {
color: black;
}
table#typo3-tabmenu td A:hover {
color: black;
text-decoration: none;
}
table#typo3-tabmenu td.tab:hover {
background: #f6eab7;
}
/* - - - - - - - - - - - - - - - - - - - - -
Dynamic Tab menu (template.php)
- - - - - - - - - - - - - - - - - - - - - */
table.typo3-dyntabmenu td {
background: #dadada;
border: 1px solid #adadad;
border-bottom: none;
......
-webkit-border-top-right-radius: 3px;
}
table.typo3-dyntabmenu td.tabact,
table.typo3-dyntabmenu td.tab_over,
table.typo3-dyntabmenu td.tabact_over {
background: #ffffff;
}
table.typo3-dyntabmenu td.tabact a,
table.typo3-dyntabmenu td.tab_over a,
table.typo3-dyntabmenu td.tabact_over a {
table.typo3-dyntabmenu td.tabact_over a,
table#typo3-tabmenu td.tabact a,
table#typo3-tabmenu td.tab_oder a,
table#typo3-tabmenu td.tabact_over a {
color: #000;
background: #ffffff;
padding-bottom: 6px;
padding-top: 4px;
position: relative;
top: 1px;
}
table.typo3-dyntabmenu td.disabled,
table.typo3-dyntabmenu td.disabled_over {
table.typo3-dyntabmenu td.disabled a,
table.typo3-dyntabmenu td.disabled_over a {
background: #ccc;
color: #999;
cursor: default;
}
table.typo3-dyntabmenu td a {
table.typo3-dyntabmenu td a,
table#typo3-tabmenu td a {
color: #666;
text-decoration: none;
}
div.typo3-dyntabmenu-divs {
background: #ffffff;
background: #ececec;
background-image: linear-gradient(center top, #ffffff 0px, #ececec 100px);
background-image: -moz-linear-gradient(center top, #ffffff 0px, #ececec 100px);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0px, #ffffff), color-stop(100px, #ececec));
......
div.typo3-dyntabmenu-divs-foldout div.tab_over a,
div.typo3-dyntabmenu-divs-foldout div.tabact_over a {
text-decoration: none;
color: #000;
}
/*
typo3/sysext/t3skin/stylesheets/sprites/t3-icons-actions.css (Arbeitskopie)
}
.t3-icon-actions.t3-icon-document-edit-access {
background-position: 0 -2208px;
}
.t3-icon-actions.t3-icon-edit-insert-default {
background-position: 0 -2232px;
}
typo3/sysext/t3skin/stylesheets/sprites/t3-icons-apps.css (Arbeitskopie)
.t3-icon-apps.t3-icon-pagetree-backend-user {
background-position: 0 0px;
}
.t3-icon-apps.t3-icon-pagetree-page-frontend-user {
.t3-icon-apps.t3-icon-filetree-mount {
background-position: 0 -24px;
}
.t3-icon-apps.t3-icon-filetree-mount {
.t3-icon-apps.t3-icon-pagetree-page-frontend-user {
background-position: 0 -48px;
}
.t3-icon-apps.t3-icon-pagetree-page-shortcut-external {
background-position: 0 -72px;
}
.t3-icon-apps.t3-icon-toolbar-menu-workspace {
.t3-icon-apps.t3-icon-pagetree-page-no-icon-found-root {
background-position: 0 -96px;
}
.t3-icon-apps.t3-icon-clipboard-images {
.t3-icon-apps.t3-icon-pagetree-page-shortcut-root {
background-position: 0 -120px;
}
.t3-icon-apps.t3-icon-pagetree-page-no-icon-found-hideinmenu {
.t3-icon-apps.t3-icon-toolbar-menu-workspace {
background-position: 0 -144px;
}
.t3-icon-apps.t3-icon-pagetree-page-shortcut-hideinmenu {
.t3-icon-apps.t3-icon-pagetree-page-mountpoint-root {
background-position: 0 -168px;
}
.t3-icon-apps.t3-icon-pagetree-page-mountpoint-hideinmenu {
.t3-icon-apps.t3-icon-clipboard-images {
background-position: 0 -192px;
}
.t3-icon-apps.t3-icon-pagetree-drag-new-inside {
.t3-icon-apps.t3-icon-pagetree-page-no-icon-found-hideinmenu {
background-position: 0 -216px;
}
.t3-icon-apps.t3-icon-clipboard-list {
.t3-icon-apps.t3-icon-pagetree-page-shortcut-hideinmenu {
background-position: 0 -240px;
}
.t3-icon-apps.t3-icon-pagetree-page-advanced {
.t3-icon-apps.t3-icon-pagetree-page-mountpoint-hideinmenu {
background-position: 0 -264px;
}
.t3-icon-apps.t3-icon-pagetree-page-domain {
.t3-icon-apps.t3-icon-pagetree-drag-new-inside {
background-position: 0 -288px;
}
.t3-icon-apps.t3-icon-filetree-folder-temp {
.t3-icon-apps.t3-icon-clipboard-list {
background-position: 0 -312px;
}
.t3-icon-apps.t3-icon-pagetree-page-mountpoint {
.t3-icon-apps.t3-icon-pagetree-page-advanced {
background-position: 0 -336px;
}
.t3-icon-apps.t3-icon-pagetree-backend-user-hideinmenu {
.t3-icon-apps.t3-icon-pagetree-page-domain {
background-position: 0 -360px;
}
.t3-icon-apps.t3-icon-filetree-folder-list {
.t3-icon-apps.t3-icon-filetree-folder-temp {
background-position: 0 -384px;
}
.t3-icon-apps.t3-icon-pagetree-drag-move-into {
.t3-icon-apps.t3-icon-toolbar-menu-opendocs {
background-position: 0 -408px;
}
.t3-icon-apps.t3-icon-filetree-folder-news {
.t3-icon-apps.t3-icon-pagetree-page-recycler {
background-position: 0 -432px;
}
.t3-icon-apps.t3-icon-pagetree-page-frontend-user-hideinmenu {
.t3-icon-apps.t3-icon-pagetree-page-shortcut-external-root {
background-position: 0 -456px;
}
.t3-icon-apps.t3-icon-pagetree-drag-new-between {
.t3-icon-apps.t3-icon-pagetree-page-mountpoint {
background-position: 0 -480px;
}
.t3-icon-apps.t3-icon-pagetree-folder-default {
.t3-icon-apps.t3-icon-pagetree-page-frontend-user-root {
background-position: 0 -504px;
}
.t3-icon-apps.t3-icon-filetree-folder-default {
.t3-icon-apps.t3-icon-pagetree-backend-user-hideinmenu {
background-position: 0 -528px;
}
.t3-icon-apps.t3-icon-pagetree-page-advanced-hideinmenu {
.t3-icon-apps.t3-icon-filetree-folder-list {
background-position: 0 -552px;
}
.t3-icon-apps.t3-icon-filetree-folder-add {
.t3-icon-apps.t3-icon-pagetree-page-shortcut-external-hideinmenu {
background-position: 0 -576px;
}
.t3-icon-apps.t3-icon-pagetree-drag-move-between {
.t3-icon-apps.t3-icon-pagetree-page-frontend-user-hideinmenu {
background-position: 0 -600px;
}
.t3-icon-apps.t3-icon-pagetree-page-frontend-users-hideinmenu {
.t3-icon-apps.t3-icon-pagetree-drag-move-into {
background-position: 0 -624px;
}
.t3-icon-apps.t3-icon-pagetree-spacer {
.t3-icon-apps.t3-icon-filetree-folder-news {
background-position: 0 -648px;
}
.t3-icon-apps.t3-icon-filetree-folder-locked {
.t3-icon-apps.t3-icon-pagetree-drag-new-between {
background-position: 0 -672px;
}
.t3-icon-apps.t3-icon-pagetree-page-not-in-menu {
.t3-icon-apps.t3-icon-pagetree-folder-default {
background-position: 0 -696px;
}
.t3-icon-apps.t3-icon-pagetree-root {
.t3-icon-apps.t3-icon-pagetree-folder-contains-shop {
background-position: 0 -720px;
}
.t3-icon-apps.t3-icon-pagetree-page-backend-users-hideinmenu {
.t3-icon-apps.t3-icon-pagetree-page-advanced-root {
background-position: 0 -744px;
}
.t3-icon-apps.t3-icon-toolbar-menu-shortcut {
.t3-icon-apps.t3-icon-filetree-folder-default {
background-position: 0 -768px;
}
.t3-icon-apps.t3-icon-pagetree-drag-place-denied {
.t3-icon-apps.t3-icon-pagetree-page-advanced-hideinmenu {
background-position: 0 -792px;
}
.t3-icon-apps.t3-icon-pagetree-page-no-icon-found {
.t3-icon-apps.t3-icon-filetree-folder-add {
background-position: 0 -816px;
}
.t3-icon-apps.t3-icon-pagetree-page-shortcut {
.t3-icon-apps.t3-icon-pagetree-drag-move-between {
background-position: 0 -840px;
}
.t3-icon-apps.t3-icon-filetree-root {
.t3-icon-apps.t3-icon-pagetree-page-frontend-users-root {
background-position: 0 -864px;
}
.t3-icon-apps.t3-icon-pagetree-page-frontend-users {
.t3-icon-apps.t3-icon-pagetree-page-frontend-users-hideinmenu {
background-position: 0 -888px;
}
.t3-icon-apps.t3-icon-filetree-folder-user {
.t3-icon-apps.t3-icon-toolbar-menu-cache {
background-position: 0 -912px;
}
.t3-icon-apps.t3-icon-filetree-folder-media {
.t3-icon-apps.t3-icon-pagetree-folder-contains-board {
background-position: 0 -936px;
}
.t3-icon-apps.t3-icon-pagetree-page-default {
.t3-icon-apps.t3-icon-filetree-folder-locked {
background-position: 0 -960px;
}
.t3-icon-apps.t3-icon-pagetree-page-backend-users {
.t3-icon-apps.t3-icon-pagetree-spacer {
background-position: 0 -984px;
}
.t3-icon-apps.t3-icon-pagetree-page-no-icon-found-root {
.t3-icon-apps.t3-icon-toolbar-menu-search {
background-position: 0 -1008px;
}
.t3-icon-apps.t3-icon-pagetree-page-shortcut-root {
.t3-icon-apps.t3-icon-pagetree-page-not-in-menu {
background-position: 0 -1032px;
}
.t3-icon-apps.t3-icon-pagetree-page-mountpoint-root {
.t3-icon-apps.t3-icon-pagetree-page-backend-users-root {
background-position: 0 -1056px;
}
.t3-icon-apps.t3-icon-toolbar-menu-opendocs {
.t3-icon-apps.t3-icon-pagetree-page-backend-users-hideinmenu {
background-position: 0 -1080px;
}
.t3-icon-apps.t3-icon-pagetree-page-recycler {
.t3-icon-apps.t3-icon-pagetree-root {
background-position: 0 -1104px;
}
.t3-icon-apps.t3-icon-pagetree-page-shortcut-external-root {
.t3-icon-apps.t3-icon-toolbar-menu-shortcut {
background-position: 0 -1128px;
}
.t3-icon-apps.t3-icon-pagetree-page-frontend-user-root {
.t3-icon-apps.t3-icon-pagetree-drag-place-denied {
background-position: 0 -1152px;
}
.t3-icon-apps.t3-icon-pagetree-page-shortcut-external-hideinmenu {
.t3-icon-apps.t3-icon-pagetree-page-no-icon-found {
background-position: 0 -1176px;
}
.t3-icon-apps.t3-icon-pagetree-page-advanced-root {
.t3-icon-apps.t3-icon-pagetree-page-shortcut {
background-position: 0 -1200px;
}
.t3-icon-apps.t3-icon-toolbar-menu-cache {
.t3-icon-apps.t3-icon-filetree-root {
background-position: 0 -1224px;
}
.t3-icon-apps.t3-icon-pagetree-page-frontend-users-root {
.t3-icon-apps.t3-icon-pagetree-page-frontend-users {
background-position: 0 -1248px;
}
.t3-icon-apps.t3-icon-toolbar-menu-search {
.t3-icon-apps.t3-icon-filetree-folder-user {
background-position: 0 -1272px;
}
.t3-icon-apps.t3-icon-pagetree-page-backend-users-root {
.t3-icon-apps.t3-icon-filetree-folder-media {
background-position: 0 -1296px;
}
.t3-icon-apps.t3-icon-pagetree-folder-contains-shop {
.t3-icon-apps.t3-icon-pagetree-page-default {
background-position: 0 -1320px;
}
.t3-icon-apps.t3-icon-pagetree-folder-contains-approve {
.t3-icon-apps.t3-icon-pagetree-page-backend-users {
background-position: 0 -1344px;
}
.t3-icon-apps.t3-icon-pagetree-folder-contains-fe_users {
background-position: 0 -1368px;
}
.t3-icon-apps.t3-icon-pagetree-folder-contains-board {
.t3-icon-apps.t3-icon-pagetree-folder-contains-news {
background-position: 0 -1392px;
}
.t3-icon-apps.t3-icon-pagetree-folder-contains-news {
.t3-icon-apps.t3-icon-pagetree-folder-contains-approve {
background-position: 0 -1416px;
}
typo3/sysext/cms/layout/db_layout.php (Arbeitskopie)
'</a>';
// Move page
$buttons['move_page'] = '<a href="' . htmlspecialchars($BACK_PATH . 'move_el.php?table=pages&uid=' . $this->id . '&returnUrl=' . rawurlencode(t3lib_div::getIndpEnv('REQUEST_URI'))) . '" title="' . $LANG->getLL('move_page', TRUE) . '">' .
t3lib_iconWorks::getSpriteIcon('actions-move-move') .
t3lib_iconWorks::getSpriteIcon('actions-page-move') .
'</a>';
// Move record
if (t3lib_div::testInt($this->eRParts[1])) {
......
if ($this->CALC_PERMS&2) {
$params='&edit[pages][' . $this->id . ']=edit';
$buttons['edit_page'] = '<a href="#" onclick="' . htmlspecialchars(t3lib_BEfunc::editOnClick($params, $BACK_PATH)) . '" title="' . $LANG->getLL('editPageProperties', TRUE) . '">' .
t3lib_iconWorks::getSpriteIcon('actions-document-open') .
t3lib_iconWorks::getSpriteIcon('actions-page-open') .
'</a>';
}
......
$SOBE->main();
$SOBE->printContent();
?>
?>
typo3/sysext/tstemplate_info/class.tx_tstemplateinfo.php (Arbeitskopie)
* @return string A row for a HTML table
*/
function tableRow($label, $data, $field) {
$ret = '<tr><td class="bgColor4" width="1%">';
$ret.= '<a href="index.php?id='.$this->pObj->id.'&e['.$field.']=1">'.t3lib_iconWorks::getSpriteIcon('actions-document-open',array("title"=> $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_common.xml:editField', true))) . '</a>';
$ret.= '</td><td class="bgColor4" width="1%"><strong>'.$label.'&nbsp;&nbsp;</strong></td><td class="bgColor4" width="99%">'.$data.'&nbsp;</td></tr>';
$ret = '<tr><td class="bgColor4" width="20%">';
$ret.= '<a href="index.php?id=' . $this->pObj->id . '&e[' . $field . ']=1">' .
t3lib_iconWorks::getSpriteIcon('actions-document-open', array('title' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_common.xml:editField', true))) . '<strong>' . $label . '&nbsp;&nbsp;</strong></a>';
$ret.= '</td><td class="bgColor4">' . $data . '&nbsp;</td></tr>';
return $ret;
}
......
sprintf($GLOBALS['LANG']->getLL('editToView'), (trim($tplRow[config]) ? count(explode(LF, $tplRow[config])) : 0)),
'config'
);
$outCode = '<table border=0 cellpadding=1 cellspacing=1 width="100%">'.$outCode.'</table>';
$outCode = '<table class="typo3-dblist">' . $outCode . '</table>';
$outCode = '<table border=0 cellpadding=0 cellspacing=0>
<tr><td class="bgColor2">'.$outCode.'<img src=clear.gif width=465 height=1></td></tr>
</table>';
// Edit all icon:
$outCode.= '<br /><a href="#" onClick="' . t3lib_BEfunc::editOnClick(rawurlencode('&createExtension=0') .
'&amp;edit[sys_template][' . $tplRow['uid'] . ']=edit', $BACK_PATH, '') . '"><strong>' .
t3lib_iconWorks::getSpriteIcon('actions-document-open', array('title'=>
$GLOBALS['LANG']->getLL('editTemplateRecord') )) . $GLOBALS['LANG']->getLL('editTemplateRecord') . '</strong></a>';
$theOutput.= $this->pObj->doc->spacer(25);
$theOutput.= $this->pObj->doc->section('', $outCode);
......
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/tstemplate_info/class.tx_tstemplateinfo.php']);
}
?>
?>
(1-1/6)