Project

General

Profile

Feature #18194 » static_templates_2009_v6.patch

Administrator Admin, 2010-01-04 13:07

View differences:

t3lib/class.t3lib_tstemplate.php (working copy)
}
// Include static records (static_template) or files (from extensions) (#1/2)
if (!$row['includeStaticAfterBasedOn']) { // NORMAL inclusion, The EXACT same code is found below the basedOn inclusion!!!
// NORMAL inclusion, The EXACT same code is found below the basedOn inclusion!!!
if (!$row['includeStaticAfterBasedOn']) {
$this->includeStaticTypoScriptSources($idList,$templateID,$pid,$row);
}
......
}
/**
* Includes static template records (from static_template table) and static template files (from extensions) for the input template record row.
* Includes static template records (from static_template table, loaded through a hook) and static template files (from extensions) for the input template record row.
*
* @param string A list of already processed template ids including the current; The list is on the form "[prefix]_[uid]" where [prefix] is "sys" for "sys_template" records, "static" for "static_template" records and "ext_" for static include files (from extensions). The list is used to check that the recursive inclusion of templates does not go into circles: Simply it is used to NOT include a template record/file which has already BEEN included somewhere in the recursion.
* @param string The id of the current template. Same syntax as $idList ids, eg. "sys_123"
......
*/
function includeStaticTypoScriptSources($idList,$templateID,$pid,$row) {
// Static Template Records (static_template): include_static is a list of static templates to include
if (trim($row['include_static'])) {
$include_staticArr = t3lib_div::intExplode(',', $row['include_static']);
foreach ($include_staticArr as $id) { // traversing list
if (!t3lib_div::inList($idList,'static_'.$id)) { // if $id is not allready included ...
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', 'static_template', 'uid='.intval($id));
if ($subrow = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) { // there was a template, then we fetch that
$subrow = $this->prependStaticExtra($subrow);
$this->processTemplate($subrow,$idList.',static_'.$id,$pid,'static_'.$id,$templateID);
}
$GLOBALS['TYPO3_DB']->sql_free_result($res);
}
// Call function for link rendering:
if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['includeStaticTypoScriptSources'])) {
$_params = array(
'idList' => &$idList,
'templateId' => &$templateID,
'pid' => &$pid,
'row' => &$row
);
foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['includeStaticTypoScriptSources'] as $_funcRef) {
t3lib_div::callUserFunction($_funcRef, $_params, $this);
}
}
typo3/sysext/tstemplate/ts/index.php (working copy)
// New standard?
if ($newStandardTemplate) {
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('title,uid', 'static_template', '', '', 'title');
$opt = '';
while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
if (substr(trim($row['title']), 0, 8) == 'template') {
$opt .= '<option value="' . $row['uid'] . '">' . htmlspecialchars($row['title']) . '</option>';
}
}
$selector = '<select name="createStandard"><option></option>' . $opt . '</select>';
if (t3lib_extMgm::isLoaded('statictemplates')) { // check wether statictemplates are supported
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('title,uid', 'static_template', '', '', 'title');
$opt = '';
while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
if (substr(trim($row['title']), 0, 8) == 'template') {
$opt .= '<option value="' . $row['uid'] . '">' . htmlspecialchars($row['title']) . '</option>';
}
}
$selector = '<select name="createStandard"><option></option>' . $opt . '</select>';
$staticsText = ', optionally based on one of the standard templates';
} else {
$selector = '<input type="hidden" name="createStandard" value="" />';
$staticsText = '';
}
// Extension?
$theOutput .= $this->doc->spacer(10);
$theOutput .= $this->doc->section($GLOBALS['LANG']->getLL('newWebsite'), $GLOBALS['LANG']->getLL('newWebsiteDescription') . '<br />
$theOutput .= $this->doc->section($GLOBALS['LANG']->getLL('newWebsite') . $staticsText, $GLOBALS['LANG']->getLL('newWebsiteDescription') . '<br />
<br />' .
$selector . '<br />
<img' . t3lib_iconWorks::skinImg($GLOBALS['BACK_PATH'], 'gfx/icon_warning.gif', 'width="18" height="16"') . ' hspace="5" align="top">
typo3/sysext/cms/ext_tables.php (working copy)
)
);
// ******************************************************************
// static_template
// ******************************************************************
$TCA['static_template'] = array (
'ctrl' => array (
'label' => 'title',
'tstamp' => 'tstamp',
'title' => 'LLL:EXT:cms/locallang_tca.xml:static_template',
'readOnly' => 1, // This should always be true, as it prevents the static templates from being altered
'adminOnly' => 1, // Only admin, if any
'rootLevel' => 1,
'is_static' => 1,
'default_sortby' => 'ORDER BY title',
'crdate' => 'crdate',
'iconfile' => 'template_standard.gif',
'dynamicConfigFile' => t3lib_extMgm::extPath($_EXTKEY).'tbl_cms.php'
)
);
?>
?>
typo3/sysext/cms/locallang_tca.xml (working copy)
<label index="sys_template.constants">Constants:</label>
<label index="sys_template.resources">Resources:</label>
<label index="sys_template.nextLevel">Template on next level:</label>
<label index="sys_template.include_static">Include static:</label>
<label index="sys_template.include_static_file">Include static (from extensions):</label>
<label index="sys_template.basedOn">Include basis template:</label>
<label index="sys_template.includeStaticAfterBasedOn">Include static AFTER basedOn:</label>
......
<label index="sys_template.tabs.options">Options</label>
<label index="sys_template.tabs.access">Access</label>
<label index="pages_language_overlay">Alternative Page Language</label>
<label index="static_template">Static templates</label>
</languageKey>
</data>
</T3locallang>
typo3/sysext/cms/ext_tables.sql (working copy)
#
# Table structure for table 'static_template'
#
CREATE TABLE static_template (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
include_static tinytext,
constants text,
config text,
editorcfg text,
description text,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# Table structure for table 'sys_domain'
#
CREATE TABLE sys_domain (
......
endtime int(11) unsigned DEFAULT '0' NOT NULL,
root tinyint(4) unsigned DEFAULT '0' NOT NULL,
clear tinyint(4) unsigned DEFAULT '0' NOT NULL,
include_static tinytext,
include_static_file text,
constants text,
config text,
typo3/sysext/cms/tbl_cms.php (working copy)
$TCA['sys_template'] = array(
'ctrl' => $TCA['sys_template']['ctrl'],
'interface' => array(
'showRecordFieldList' => 'title,clear,root,include_static,basedOn,nextLevel,resources,sitetitle,description,hidden,starttime,endtime'
'showRecordFieldList' => 'title,clear,root,basedOn,nextLevel,resources,sitetitle,description,hidden,starttime,endtime'
),
'columns' => array(
'title' => array(
......
),
)
),
'include_static' => array(
'label' => 'LLL:EXT:cms/locallang_tca.xml:sys_template.include_static',
'config' => array(
'type' => 'select',
'foreign_table' => 'static_template',
'foreign_table_where' => 'ORDER BY static_template.title DESC',
'size' => 10,
'maxitems' => 20,
'default' => '',
),
),
'include_static_file' => array(
'label' => 'LLL:EXT:cms/locallang_tca.xml:sys_template.include_static_file',
'config' => array(
......
'1' => array('showitem' => '
hidden,title;;1;;2-2-2, sitetitle, constants;;;;3-3-3, config, description;;;;4-4-4,
--div--;LLL:EXT:cms/locallang_tca.xml:sys_template.tabs.options, clear, root, nextLevel, editorcfg;;;;5-5-5,
--div--;LLL:EXT:cms/locallang_tca.xml:sys_template.tabs.include, include_static,includeStaticAfterBasedOn,6-6-6, include_static_file, basedOn, static_file_mode,
--div--;LLL:EXT:cms/locallang_tca.xml:sys_template.tabs.include, includeStaticAfterBasedOn,6-6-6, include_static_file, basedOn, static_file_mode,
--div--;LLL:EXT:cms/locallang_tca.xml:sys_template.tabs.files, resources,
--div--;LLL:EXT:cms/locallang_tca.xml:sys_template.tabs.access, starttime, endtime'
)
......
);
// ******************************************************************
// static_template
// ******************************************************************
$TCA['static_template'] = array(
'ctrl' => $TCA['static_template']['ctrl'],
'interface' => array(
'showRecordFieldList' => 'title,include_static,description'
),
'columns' => array(
'title' => array(
'label' => 'Template title:',
'config' => array(
'type' => 'input',
'size' => '25',
'max' => '256',
'eval' => 'required'
)
),
'constants' => array(
'label' => 'Constants:',
'config' => array(
'type' => 'text',
'cols' => '48',
'rows' => '10',
'wrap' => 'OFF'
),
'defaultExtras' => 'fixed-font : enable-tab',
),
'include_static' => array(
'label' => 'Include static:',
'config' => array(
'type' => 'select',
'foreign_table' => 'static_template',
'foreign_table_where' => 'ORDER BY static_template.title',
'size' => 10,
'maxitems' => 20,
'default' => ''
)
),
'config' => array(
'label' => 'Setup:',
'config' => array(
'type' => 'text',
'rows' => 10,
'cols' => 48,
'wrap' => 'OFF'
),
'defaultExtras' => 'fixed-font : enable-tab',
),
'editorcfg' => array(
'label' => 'Backend Editor Configuration:',
'config' => array(
'type' => 'text',
'rows' => 4,
'cols' => 48,
'wrap' => 'OFF'
),
'defaultExtras' => 'fixed-font : enable-tab',
),
'description' => array(
'label' => 'Description:',
'config' => array(
'type' => 'text',
'rows' => 10,
'cols' => 48
)
)
),
'types' => array(
'1' => array('showitem' => 'title;;;;2-2-2, constants;;;;3-3-3, config, include_static;;;;5-5-5, description;;;;5-5-5, editorcfg')
)
);
?>
typo3/sysext/install/mod/class.tx_install.php (working copy)
require_once(t3lib_extMgm::extPath('install').'updates/class.tx_coreupdates_installversioning.php');
require_once(t3lib_extMgm::extPath('install').'updates/class.tx_coreupdates_installnewsysexts.php');
require_once(t3lib_extMgm::extPath('install') . 'mod/class.tx_install_session.php');
require_once(t3lib_extMgm::extPath('install') . 'updates/class.tx_coreupdates_statictemplates.php');
/**
* Install Tool module
typo3/sysext/install/ext_localconf.php (working copy)
// install versioning since TYPO3 4.3
$TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['installVersioning'] = 'tx_coreupdates_installversioning';
// add static_template if needed (since TYPO3 4.3 this table is not standard)
// if needed, sysext statictables is loaded, which gives back functionality
$TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['checkForStaticTypoScriptTemplates'] = 'tx_coreupdates_statictemplates';
?>
(13-13/14)