<?php
/***************************************************************
-* Copyright notice
-*
-* (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
-* All rights reserved
-*
-* This script is part of the TYPO3 project. The TYPO3 project is
-* free software; you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation; either version 2 of the License, or
-* (at your option) any later version.
-*
-* The GNU General Public License can be found at
-* http://www.gnu.org/copyleft/gpl.html.
-* A copy is found in the textfile GPL.txt and important notices to the license
-* from the author is found in LICENSE.txt distributed with these scripts.
-*
-*
-* This script is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
-*
-* This copyright notice MUST APPEAR in all copies of the script!
-***************************************************************/
+ * Copyright notice
+ *
+ * (c) 1999-2013 Kasper Skårhøj (kasperYYYY@typo3.com)
+ * All rights reserved
+ *
+ * This script is part of the TYPO3 project. The TYPO3 project is
+ * free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * The GNU General Public License can be found at
+ * http://www.gnu.org/copyleft/gpl.html.
+ * A copy is found in the textfile GPL.txt and important notices to the license
+ * from the author is found in LICENSE.txt distributed with these scripts.
+ *
+ *
+ * This script is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * This copyright notice MUST APPEAR in all copies of the script!
+ ***************************************************************/
+
/**
* New database item menu
*
* This script lets users choose a new database element to create.
* Includes a wizard mode for visually pointing out the position of new pages
*
- * Revised for TYPO3 3.6 November/2003 by Kasper Skårhøj
- * XHTML compliant
- *
- * @author Kasper Skårhøj <kasperYYYY@typo3.com>
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
*/
-
-
-
-
-$BACK_PATH='';
-require('init.php');
-require('template.php');
-$LANG->includeLLFile('EXT:lang/locallang_misc.xml');
-
+require __DIR__ . '/init.php';
/**
* Extension for the tree class that generates the tree of pages in the page-wizard mode
*
- * @author Kasper Skårhøj <kasperYYYY@typo3.com>
- * @package TYPO3
- * @subpackage core
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
*/
-class localPageTree extends t3lib_pageTree {
+class localPageTree extends \TYPO3\CMS\Backend\Tree\View\PageTreeView {
/**
* Inserting uid-information in title-text for an icon
*
- * @param string Icon image
- * @param array Item row
- * @return string Wrapping icon image.
+ * @param string $icon Icon image
+ * @param array $row Item row
+ * @return string Wrapping icon image.
+ * @todo Define visibility
*/
- function wrapIcon($icon, $row) {
- return $this->addTagAttributes($icon, ' title="id='.htmlspecialchars($row['uid']).'"');
+ public function wrapIcon($icon, $row) {
+ return $this->addTagAttributes($icon, ' title="id=' . htmlspecialchars($row['uid']) . '"');
}
/**
* Determines whether to expand a branch or not.
* Here the branch is expanded if the current id matches the global id for the listing/new
*
- * @param integer The ID (page id) of the element
- * @return boolean Returns TRUE if the IDs matches
+ * @param integer $id The ID (page id) of the element
+ * @return boolean Returns TRUE if the IDs matches
+ * @todo Define visibility
*/
- function expandNext($id) {
- return $id==$GLOBALS['SOBE']->id ? 1 : 0;
+ public function expandNext($id) {
+ return $id == $GLOBALS['SOBE']->id ? 1 : 0;
}
}
-
-
-
-
-
-
-/**
- * Script class for 'db_new'
- *
- * @author Kasper Skårhøj <kasperYYYY@typo3.com>
- * @package TYPO3
- * @subpackage core
- */
-class SC_db_new {
- var $pageinfo;
- var $pidInfo;
- var $newPagesInto;
- var $newContentInto;
- var $newPagesAfter;
-
- /**
- * Determines, whether "Select Position" for new page should be shown
- * @var bool $newPagesSelectPosition
- */
- protected $newPagesSelectPosition = TRUE;
-
- var $web_list_modTSconfig;
- var $allowedNewTables;
- var $deniedNewTables;
- var $web_list_modTSconfig_pid;
- var $allowedNewTables_pid;
- var $deniedNewTables_pid;
- var $code;
- var $R_URI;
-
- // Internal, static: GPvar
- var $id; // see init()
- var $returnUrl; // Return url.
- var $pagesOnly; // pagesOnly flag.
-
- // Internal
- var $perms_clause; // see init()
-
- /**
- * Document template object
- *
- * @var mediumDoc
- */
- var $doc;
- var $content; // Accumulated HTML output
- var $tRows;
-
- /**
- * Constructor function for the class
- *
- * @return void
- */
- function init() {
-
- // page-selection permission clause (reading)
- $this->perms_clause = $GLOBALS['BE_USER']->getPagePermsClause(1);
-
- // this will hide records from display - it has nothing to do with user rights!!
- if ($pidList = $GLOBALS['BE_USER']->getTSConfigVal('options.hideRecords.pages')) {
- if ($pidList = $GLOBALS['TYPO3_DB']->cleanIntList($pidList)) {
- $this->perms_clause .= ' AND pages.uid NOT IN ('.$pidList.')';
- }
- }
- // Setting GPvars:
- $this->id = intval(t3lib_div::_GP('id')); // The page id to operate from
- $this->returnUrl = t3lib_div::sanitizeLocalUrl(t3lib_div::_GP('returnUrl'));
- $this->pagesOnly = t3lib_div::_GP('pagesOnly');
-
- // Create instance of template class for output
- $this->doc = t3lib_div::makeInstance('template');
- $this->doc->backPath = $GLOBALS['BACK_PATH'];
- $this->doc->setModuleTemplate('templates/db_new.html');
- $this->doc->JScode='';
-
- // Setting up the context sensitive menu:
- $this->doc->getContextMenuCode();
-
- // Creating content
- $this->content='';
- $this->content.=$this->doc->header($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:db_new.php.pagetitle'));
-
- // Id a positive id is supplied, ask for the page record with permission information contained:
- if ($this->id > 0) {
- $this->pageinfo = t3lib_BEfunc::readPageAccess($this->id, $this->perms_clause);
- }
-
- // If a page-record was returned, the user had read-access to the page.
- if ($this->pageinfo['uid']) {
- // Get record of parent page
-
- $this->pidInfo=t3lib_BEfunc::getRecord('pages', $this->pageinfo['pid']);
- // Checking the permissions for the user with regard to the parent page: Can he create new pages, new content record, new page after?
- if ($GLOBALS['BE_USER']->doesUserHaveAccess($this->pageinfo, 8)) {
- $this->newPagesInto=1;
- }
- if ($GLOBALS['BE_USER']->doesUserHaveAccess($this->pageinfo, 16)) {
- $this->newContentInto=1;
- }
-
- if (($GLOBALS['BE_USER']->isAdmin() || is_array($this->pidInfo)) && $GLOBALS['BE_USER']->doesUserHaveAccess($this->pidInfo, 8)) {
- $this->newPagesAfter=1;
- }
- } elseif ($GLOBALS['BE_USER']->isAdmin()) {
- // Admins can do it all
- $this->newPagesInto=1;
- $this->newContentInto=1;
- $this->newPagesAfter=0;
- } else {
- // People with no permission can do nothing
- $this->newPagesInto=0;
- $this->newContentInto=0;
- $this->newPagesAfter=0;
- }
- }
-
- /**
- * Main processing, creating the list of new record tables to select from
- *
- * @return void
- */
- function main() {
-
- // If there was a page - or if the user is admin (admins has access to the root) we proceed:
- if ($this->pageinfo['uid'] || $GLOBALS['BE_USER']->isAdmin()) {
- // Acquiring TSconfig for this module/current page:
- $this->web_list_modTSconfig = t3lib_BEfunc::getModTSconfig($this->pageinfo['uid'], 'mod.web_list');
- $this->allowedNewTables = t3lib_div::trimExplode(',', $this->web_list_modTSconfig['properties']['allowedNewTables'], 1);
- $this->deniedNewTables = t3lib_div::trimExplode(',', $this->web_list_modTSconfig['properties']['deniedNewTables'], 1);
-
- // Acquiring TSconfig for this module/parent page:
- $this->web_list_modTSconfig_pid = t3lib_BEfunc::getModTSconfig($this->pageinfo['pid'], 'mod.web_list');
- $this->allowedNewTables_pid = t3lib_div::trimExplode(',', $this->web_list_modTSconfig_pid['properties']['allowedNewTables'], 1);
- $this->deniedNewTables_pid = t3lib_div::trimExplode(',', $this->web_list_modTSconfig_pid['properties']['deniedNewTables'], 1);
-
- // More init:
- if (!$this->showNewRecLink('pages')) {
- $this->newPagesInto=0;
- }
- if (!$this->showNewRecLink('pages', $this->allowedNewTables_pid, $this->deniedNewTables_pid)) {
- $this->newPagesAfter=0;
- }
-
-
- // Set header-HTML and return_url
- if (is_array($this->pageinfo) && $this->pageinfo['uid']) {
- $iconImgTag = t3lib_iconWorks::getSpriteIconForRecord('pages', $this->pageinfo, array('title' => htmlspecialchars($this->pageinfo['_thePath'])));
- $title = strip_tags($this->pageinfo[$GLOBALS['TCA']['pages']['ctrl']['label']]);
- } else {
- $iconImgTag = t3lib_iconWorks::getSpriteIcon('apps-pagetree-root', array('title' => htmlspecialchars($this->pageinfo['_thePath'])));
- $title = $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'];
- }
-
- $this->code = '<span class="typo3-moduleHeader">' . $this->doc->wrapClickMenuOnIcon($iconImgTag, 'pages', $this->pageinfo['uid']) . htmlspecialchars(t3lib_div::fixed_lgd_cs($title, 45)) . '</span><br />';
-
- $this->R_URI = $this->returnUrl;
-
- // GENERATE the HTML-output depending on mode (pagesOnly is the page wizard)
- if (!$this->pagesOnly) { // Regular new element:
- $this->regularNew();
- } elseif ($this->showNewRecLink('pages')) { // Pages only wizard
- $this->pagesOnly();
- }
-
- // Add all the content to an output section
- $this->content.=$this->doc->section('', $this->code);
-
- // Setting up the buttons and markers for docheader
- $docHeaderButtons = $this->getButtons();
- $markers['CSH'] = $docHeaderButtons['csh'];
-
- $markers['CONTENT'] = $this->content;
-
- // Build the <body> for the module
- $this->content = $this->doc->startPage($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:db_new.php.pagetitle'));
- $this->content.= $this->doc->moduleBody($this->pageinfo, $docHeaderButtons, $markers);
- $this->content.= $this->doc->endPage();
- $this->content = $this->doc->insertStylesAndJS($this->content);
- }
- }
-
- /**
- * Create the panel of buttons for submitting the form or otherwise perform operations.
- *
- * @return array all available buttons as an assoc. array
- */
- protected function getButtons() {
- $buttons = array(
- 'csh' => '',
- 'back' => '',
- 'view' => '',
- 'new_page' => '',
- 'record_list' => ''
- );
-
-
- if (!$this->pagesOnly) { // Regular new element:
- // New page
- if ($this->showNewRecLink('pages')) {
- $buttons['new_page'] = '<a href="' . htmlspecialchars(t3lib_div::linkThisScript(array('pagesOnly' => '1'))) . '" title="' . $GLOBALS['LANG']->sL('LLL:EXT:cms/layout/locallang.xml:newPage', 1) . '">' .
- t3lib_iconWorks::getSpriteIcon('actions-page-new') .
- '</a>';
- }
- // CSH
- $buttons['csh'] = t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'new_regular', $GLOBALS['BACK_PATH'], '', TRUE);
- } elseif($this->showNewRecLink('pages')) { // Pages only wizard
- // CSH
- $buttons['csh'] = t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'new_pages', $GLOBALS['BACK_PATH'], '', TRUE);
- }
-
- // Back
- if ($this->R_URI) {
- $buttons['back'] = '<a href="' . htmlspecialchars($this->R_URI) . '" class="typo3-goBack" title="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.goBack', 1) . '">' .
- t3lib_iconWorks::getSpriteIcon('actions-view-go-back') .
- '</a>';
- }
-
- if (is_array($this->pageinfo) && $this->pageinfo['uid']) {
- // View
- $buttons['view'] = '<a href="#" onclick="' . htmlspecialchars(t3lib_BEfunc::viewOnClick($this->pageinfo['uid'], $this->backPath, t3lib_BEfunc::BEgetRootLine($this->pageinfo['uid']))) . '" title="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.showPage', 1) . '">' .
- t3lib_iconWorks::getSpriteIcon('actions-document-view') .
- '</a>';
-
- // Record list
- // If access to Web>List for user, then link to that module.
- $buttons['record_list'] = t3lib_BEfunc::getListViewLink(
- array(
- 'id' => $this->pageinfo['uid'],
- 'returnUrl' => t3lib_div::getIndpEnv('REQUEST_URI'),
- ),
- $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.showList')
- );
- }
-
-
-
- return $buttons;
- }
-
- /**
- * Creates the position map for pages wizard
- *
- * @return void
- */
- function pagesOnly() {
- $numberOfPages = $GLOBALS['TYPO3_DB']->exec_SELECTcountRows('*', 'pages', '1=1' . t3lib_BEfunc::deleteClause('pages'));
- if ($numberOfPages > 0) {
- $this->code.='
- <h3>' . htmlspecialchars($GLOBALS['LANG']->getLL('selectPosition')) . ':</h3>
- ';
- $positionMap = t3lib_div::makeInstance('t3lib_positionMap');
- /** @var t3lib_positionMap $positionMap */
- $this->code .= $positionMap->positionTree($this->id, $this->pageinfo, $this->perms_clause, $this->R_URI);
- } else {
- // No pages yet, no need to prompt for position, redirect to page creation.
- $javascript = t3lib_BEfunc::editOnClick('returnUrl=%2Ftypo3%2Fdb_new.php%3Fid%3D0%26pagesOnly%3D1&edit[pages][0]=new&returnNewPageId=1');
- $startPos = strpos($javascript, 'href=\'') + 6;
- $endPos = strpos($javascript, '\';');
- $url = substr($javascript, $startPos, $endPos - $startPos);
- @ob_end_clean();
- t3lib_utility_Http::redirect($url);
- }
- }
-
- /**
- * Create a regular new element (pages and records)
- *
- * @return void
- */
- function regularNew() {
-
- $doNotShowFullDescr = FALSE;
- // Initialize array for accumulating table rows:
- $this->tRows = array();
-
- // tree images
- $halfLine = '<img' . t3lib_iconWorks::skinImg($this->doc->backPath, 'gfx/ol/halfline.gif', 'width="18" height="8"') . ' alt="" />';
- $firstLevel = '<img' . t3lib_iconWorks::skinImg($this->doc->backPath, 'gfx/ol/join.gif', 'width="18" height="16"') . ' alt="" />';
- $secondLevel = '<img' . t3lib_iconWorks::skinImg($this->doc->backPath, 'gfx/ol/line.gif', 'width="18" height="16"') . ' alt="" />
- <img' . t3lib_iconWorks::skinImg($this->doc->backPath, 'gfx/ol/join.gif', 'width="18" height="16"') . ' alt="" />';
- $secondLevelLast = '<img' . t3lib_iconWorks::skinImg($this->doc->backPath, 'gfx/ol/line.gif', 'width="18" height="16"') . ' alt="" />
- <img' . t3lib_iconWorks::skinImg($this->doc->backPath, 'gfx/ol/joinbottom.gif', 'width="18" height="16"') . ' alt="" />';
-
- // Get TSconfig for current page
- $pageTS = t3lib_BEfunc::getPagesTSconfig($this->id);
- // Finish initializing new pages options with TSconfig
- // Each new page option may be hidden by TSconfig
-
- // Enabled option for the position of a new page
- $this->newPagesSelectPosition = !empty($pageTS['mod.']['wizards.']['newRecord.']['pages.']['show.']['pageSelectPosition']);
- // pseudo-boolean (0/1) for backward compatibility
- $this->newPagesInto = (!empty($pageTS['mod.']['wizards.']['newRecord.']['pages.']['show.']['pageInside']) ? 1 : 0);
- $this->newPagesAfter = (!empty($pageTS['mod.']['wizards.']['newRecord.']['pages.']['show.']['pageAfter']) ? 1 : 0);
-
-
- // Slight spacer from header:
- $this->code .= $halfLine;
-
- // New Page
- $table = 'pages';
- $v = $GLOBALS['TCA'][$table];
- $pageIcon = t3lib_iconWorks::getSpriteIconForRecord($table, array());
-
- $newPageIcon = t3lib_iconWorks::getSpriteIcon('actions-page-new');
- $rowContent = '';
-
- // New pages INSIDE this pages
- $newPageLinks = array();
- if ($this->newPagesInto
- && $this->isTableAllowedForThisPage($this->pageinfo, 'pages')
- && $GLOBALS['BE_USER']->check('tables_modify', 'pages')
- && $GLOBALS['BE_USER']->workspaceCreateNewRecord($this->pageinfo['_ORIG_uid']?$this->pageinfo['_ORIG_uid']:$this->id, 'pages')
- ) {
-
- // Create link to new page inside:
- $newPageLinks[] = $this->linkWrap(
- t3lib_iconWorks::getSpriteIconForRecord($table, array()) .
- $GLOBALS['LANG']->sL($v['ctrl']['title'], 1) . ' (' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:db_new.php.inside', 1) . ')',
- $table,
- $this->id
- );
- }
-
- // New pages AFTER this pages
- if ($this->newPagesAfter
- && $this->isTableAllowedForThisPage($this->pidInfo, 'pages')
- && $GLOBALS['BE_USER']->check('tables_modify', 'pages')
- && $GLOBALS['BE_USER']->workspaceCreateNewRecord($this->pidInfo['uid'], 'pages')
- ) {
-
- $newPageLinks[] = $this->linkWrap(
- $pageIcon .
- $GLOBALS['LANG']->sL($v['ctrl']['title'], 1) . ' (' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:db_new.php.after', 1) . ')',
- 'pages',
- -$this->id
- );
-
- }
-
- // New pages at selection position
- if ($this->newPagesSelectPosition) {
- // Link to page-wizard:
- $newPageLinks[] = '<a href="' . htmlspecialchars(t3lib_div::linkThisScript(array('pagesOnly' => 1))) . '">' .
- $pageIcon .
- htmlspecialchars($GLOBALS['LANG']->getLL('pageSelectPosition')) .
- '</a>';
- }
-
- // Assemble all new page links
- $numPageLinks = count($newPageLinks);
- for ($i = 0; $i < $numPageLinks; $i++) {
- // For the last link, use the "branch bottom" icon
- if ($i == $numPageLinks - 1) {
- $treeComponent = $secondLevelLast;
- } else {
- $treeComponent = $secondLevel;
- }
- $rowContent .= '<br />' . $treeComponent . $newPageLinks[$i];
- }
- // Add row header and half-line if not empty
- if (!empty($rowContent)) {
- $rowContent.= '<br />' . $halfLine;
- $rowContent = $firstLevel . $newPageIcon . ' <strong>' . $GLOBALS['LANG']->getLL('createNewPage') . '</strong>' . $rowContent;
- }
-
- // Compile table row to show the icon for "new page (select position)"
- $startRows = array();
- if ($this->showNewRecLink('pages') && !empty($rowContent)) {
- $startRows[] = '
- <tr>
- <td nowrap="nowrap">' . $rowContent . '</td>
- <td>' . t3lib_BEfunc::wrapInHelp($table, '') . '</td>
- </tr>
- ';
- }
-
-
- // New tables (but not pages) INSIDE this pages
- $isAdmin = $GLOBALS['BE_USER']->isAdmin();
- $newContentIcon = t3lib_iconWorks::getSpriteIcon('actions-document-new');
- if ($this->newContentInto) {
- if (is_array($GLOBALS['TCA'])) {
- $groupName = '';
- foreach($GLOBALS['TCA'] as $table => $v) {
- $count = count($GLOBALS['TCA'][$table]);
- $counter = 1;
- if ($table != 'pages'
- && $this->showNewRecLink($table)
- && $this->isTableAllowedForThisPage($this->pageinfo, $table)
- && $GLOBALS['BE_USER']->check('tables_modify', $table)
- && (($v['ctrl']['rootLevel'] xor $this->id) || $v['ctrl']['rootLevel'] == -1)
- && $GLOBALS['BE_USER']->workspaceCreateNewRecord($this->pageinfo['_ORIG_uid'] ? $this->pageinfo['_ORIG_uid'] : $this->id, $table)
- ) {
-
- $newRecordIcon = t3lib_iconWorks::getSpriteIconForRecord($table, array());
- $rowContent = '';
-
- // Create new link for record:
- $newLink = $this->linkWrap(
- $newRecordIcon . $GLOBALS['LANG']->sL($v['ctrl']['title'], 1)
- ,$table
- ,$this->id);
-
- // If the table is 'tt_content' (from "cms" extension), create link to wizard
- if ($table == 'tt_content') {
- $groupName = $GLOBALS['LANG']->getLL('createNewContent');
- $rowContent = $firstLevel . $newContentIcon . ' <strong>' . $GLOBALS['LANG']->getLL('createNewContent') . '</strong>';
- // If mod.web_list.newContentWiz.overrideWithExtension is set, use that extension's wizard instead:
- $overrideExt = $this->web_list_modTSconfig['properties']['newContentWiz.']['overrideWithExtension'];
- $pathToWizard = (t3lib_extMgm::isLoaded($overrideExt)) ? (t3lib_extMgm::extRelPath($overrideExt).'mod1/db_new_content_el.php') : 'sysext/cms/layout/db_new_content_el.php';
-
- $href = $pathToWizard . '?id=' . $this->id . '&returnUrl=' . rawurlencode(t3lib_div::getIndpEnv('REQUEST_URI'));
- $rowContent.= '<br />' . $secondLevel . $newLink . '<br />' .
- $secondLevelLast .
- '<a href="' . htmlspecialchars($href) . '">' .
- $newContentIcon . htmlspecialchars($GLOBALS['LANG']->getLL('clickForWizard')) .
- '</a>';
-
- // Half-line added:
- $rowContent.= '<br />' . $halfLine;
- } else {
- // get the title
- if ($v['ctrl']['readOnly'] || $v['ctrl']['hideTable'] || $v['ctrl']['is_static']) {
- continue;
- }
- if ($v['ctrl']['adminOnly'] && !$isAdmin) {
- continue;
- }
- $nameParts = explode('_', $table);
- $thisTitle = '';
- if ($nameParts[0] == 'tx' || $nameParts[0] == 'tt') {
- // try to extract extension name
- if (substr($v['ctrl']['title'], 0, 8) == 'LLL:EXT:') {
- $_EXTKEY = substr($v['ctrl']['title'], 8);
- $_EXTKEY = substr($_EXTKEY, 0, strpos($_EXTKEY, '/'));
- if ($_EXTKEY != '') {
- // first try to get localisation of extension title
- $temp = explode(':', substr($v['ctrl']['title'], 9 + strlen($_EXTKEY)));
- $langFile = $temp[0];
- $thisTitle = $GLOBALS['LANG']->sL('LLL:EXT:' . $_EXTKEY . '/' . $langFile . ':extension.title');
- // if no localisation available, read title from ext_emconf.php
- if (!$thisTitle && is_file(t3lib_extMgm::extPath($_EXTKEY) . 'ext_emconf.php')) {
- include(t3lib_extMgm::extPath($_EXTKEY) . 'ext_emconf.php');
- $thisTitle = $EM_CONF[$_EXTKEY]['title'];
- }
- $iconFile[$_EXTKEY] = '<img src="' . t3lib_extMgm::extRelPath($_EXTKEY) . 'ext_icon.gif" />';
- } else {
- $thisTitle = $nameParts[1];
- $iconFile[$_EXTKEY] = '';
- }
- } else {
- $thisTitle = $nameParts[1];
- $iconFile[$_EXTKEY] = '';
- }
- } else {
- $_EXTKEY = 'system';
- $thisTitle = $GLOBALS['LANG']->getLL('system_records');
- $iconFile['system'] = t3lib_iconWorks::getSpriteIcon('apps-pagetree-root');
- }
-
- if ($groupName == '' || $groupName != $_EXTKEY) {
- $groupName = empty($v['ctrl']['groupName']) ? $_EXTKEY : $v['ctrl']['groupName'];
- }
-
- $rowContent .= $newLink;
- $counter++;
-
- }
-
-
- // Compile table row:
- if ($table == 'tt_content') {
- $startRows[] = '
- <tr>
- <td nowrap="nowrap">' . $rowContent . '</td>
- <td>' . t3lib_BEfunc::wrapInHelp($table, '') . '</td>
- </tr>';
- } else {
- $this->tRows[$groupName]['title'] = $thisTitle;
- $this->tRows[$groupName]['html'][] = $rowContent;
- $this->tRows[$groupName]['table'][] = $table;
- }
- }
- }
- }
- }
-
- // user sort
- if (isset($pageTS['mod.']['wizards.']['newRecord.']['order'])) {
- $this->newRecordSortList = t3lib_div::trimExplode(',', $pageTS['mod.']['wizards.']['newRecord.']['order'], TRUE);
- }
- uksort($this->tRows, array($this, 'sortNewRecordsByConfig'));
-
- // Compile table row:
- $finalRows = array();
- $finalRows[] = implode('', $startRows);
- foreach ($this->tRows as $key => $value) {
- $row = '<tr>
- <td nowrap="nowrap">' . $halfLine . '<br />' .
- $firstLevel . '' . $iconFile[$key] . ' <strong>' . $value['title'] . '</strong>' .
- '</td><td> <br />' . t3lib_BEfunc::wrapInHelp($key, '') . '</td>
- </tr>';
- $count = count($value['html']) - 1;
- foreach ($value['html'] as $recordKey => $record) {
- $row .= '
- <tr>
- <td nowrap="nowrap">' . ($recordKey < $count ? $secondLevel : $secondLevelLast) . $record . '</td>
- <td>' . t3lib_BEfunc::wrapInHelp($value['table'][$recordKey], '') . '</td>
- </tr>';
- }
- $finalRows[] = $row;
- }
-
- // end of tree
- $finalRows[]='
- <tr>
- <td><img' . t3lib_iconWorks::skinImg($this->doc->backPath, 'gfx/ol/stopper.gif', 'width="18" height="16"') . ' alt="" /></td>
- <td></td>
- </tr>
- ';
-
-
- // Make table:
- $this->code.='
- <table border="0" cellpadding="0" cellspacing="0" id="typo3-newRecord">
- ' . implode('', $finalRows) . '
- </table>
- ';
- }
-
- /**
- * user array sort function used by regularNew
- *
- * @param string first array element for compare
- * @param string first array element for compare
- * @return int -1 for lower, 0 for equal, 1 for greater
- */
- function sortNewRecordsByConfig($a, $b) {
- if (count($this->newRecordSortList)) {
- if (in_array($a, $this->newRecordSortList) && in_array($b, $this->newRecordSortList)) {
- // both are in the list, return relative to position in array
- $sub = array_search($a, $this->newRecordSortList) - array_search($b, $this->newRecordSortList);
- $ret = $sub < 0 ? -1 : $sub == 0 ? 0 : 1;
- } elseif (in_array($a, $this->newRecordSortList)) {
- // first element is in array, put to top
- $ret = -1;
- } elseif (in_array($b, $this->newRecordSortList)) {
- // second element is in array, put first to bottom
- $ret = 1;
- } else {
- // no element is in array, return alphabetic order
- $ret = strnatcasecmp($this->tRows[$a]['title'], $this->tRows[$b]['title']);
- }
- return $ret;
- } else {
- // return alphabetic order
- return strnatcasecmp($this->tRows[$a]['title'], $this->tRows[$b]['title']);
- }
- }
-
- /**
- * Ending page output and echo'ing content to browser.
- *
- * @return void
- */
- function printContent() {
- echo $this->content;
- }
-
- /**
- * Links the string $code to a create-new form for a record in $table created on page $pid
- *
- * @param string Link text
- * @param string Table name (in which to create new record)
- * @param integer PID value for the "&edit['.$table.']['.$pid.']=new" command (positive/negative)
- * @param boolean If $addContentTable is set, then a new contentTable record is created together with pages
- * @return string The link.
- */
- function linkWrap($linkText, $table, $pid, $addContentTable = FALSE) {
- $parameters = '&edit[' . $table . '][' . $pid . ']=new';
-
- if ($table == 'pages'
- && $GLOBALS['TYPO3_CONF_VARS']['SYS']['contentTable']
- && isset($GLOBALS['TCA'][$GLOBALS['TYPO3_CONF_VARS']['SYS']['contentTable']])
- && $addContentTable) {
- $parameters .= '&edit['.$GLOBALS['TYPO3_CONF_VARS']['SYS']['contentTable'].'][prev]=new&returnNewPageId=1';
- } elseif ($table == 'pages_language_overlay') {
- $parameters .= '&overrideVals[pages_language_overlay][doktype]='
- . (int) $this->pageinfo['doktype'];
- }
-
- $onClick = t3lib_BEfunc::editOnClick($parameters, '', $this->returnUrl);
-
- return '<a href="#" onclick="'.htmlspecialchars($onClick).'">' . $linkText . '</a>';
- }
-
- /**
- * Returns TRUE if the tablename $checkTable is allowed to be created on the page with record $pid_row
- *
- * @param array Record for parent page.
- * @param string Table name to check
- * @return boolean Returns TRUE if the tablename $checkTable is allowed to be created on the page with record $pid_row
- */
- function isTableAllowedForThisPage($pid_row, $checkTable) {
- if (!is_array($pid_row)) {
- if ($GLOBALS['BE_USER']->user['admin']) {
- return TRUE;
- } else {
- return FALSE;
- }
- }
- // be_users and be_groups may not be created anywhere but in the root.
- if ($checkTable=='be_users' || $checkTable=='be_groups') {
- return FALSE;
- }
- // Checking doktype:
- $doktype = intval($pid_row['doktype']);
- if (!$allowedTableList = $GLOBALS['PAGES_TYPES'][$doktype]['allowedTables']) {
- $allowedTableList = $GLOBALS['PAGES_TYPES']['default']['allowedTables'];
- }
- if (strstr($allowedTableList, '*') || t3lib_div::inList($allowedTableList, $checkTable)) { // If all tables or the table is listed as a allowed type, return TRUE
- return TRUE;
- }
- }
-
- /**
- * Returns TRUE if:
- * - $allowedNewTables and $deniedNewTables are empty
- * - the table is not found in $deniedNewTables and $allowedNewTables is not set or the $table tablename is found in $allowedNewTables
- *
- * If $table tablename is found in $allowedNewTables and $deniedNewTables, $deniedNewTables
- * has priority over $allowedNewTables.
- *
- * @param string Table name to test if in allowedTables
- * @param array Array of new tables that are allowed.
- * @param array Array of new tables that are not allowed.
- * @return boolean Returns TRUE if a link for creating new records should be displayed for $table
- */
- function showNewRecLink($table, array $allowedNewTables=array(), array $deniedNewTables=array()) {
- $allowedNewTables = ($allowedNewTables ? $allowedNewTables : $this->allowedNewTables);
- $deniedNewTables = ($deniedNewTables ? $deniedNewTables : $this->deniedNewTables);
- // No deny/allow tables are set:
- if (!count($allowedNewTables) && !count($deniedNewTables)) {
- return TRUE;
- // If table is not denied (which takes precedence over allowed tables):
- } elseif (!in_array($table, $deniedNewTables) && (!count($allowedNewTables) || in_array($table, $allowedNewTables))) {
- return TRUE;
- // If table is denied or allowed tables are set, but table is not part of:
- } else {
- return FALSE;
- }
- }
-}
-
-// Make instance:
-$SOBE = t3lib_div::makeInstance('SC_db_new');
-$SOBE->init();
-$SOBE->main();
-$SOBE->printContent();
-
-?>
\ No newline at end of file
+$newRecordController = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Backend\\Controller\\NewRecordController');
+$newRecordController->main();
+$newRecordController->printContent();
+?>