Feature #23408 » 15504.diff
typo3/sysext/install/mod/class.tx_install.php (Arbeitskopie) | ||
---|---|---|
$textLineSubpart = '';
|
||
$description = trim($commentArr[1][$k][$vk]);
|
||
$isTextarea = preg_match('/^string \(textarea\)/i',$description) ? TRUE : FALSE;
|
||
$doNotRender = preg_match('/^string \(exclude\)/i', $description) ? TRUE : FALSE;
|
||
$isTextarea = preg_match('/^(<p>)?string \(textarea\)/i',$description) ? TRUE : FALSE;
|
||
$doNotRender = preg_match('/^(<p>)?string \(exclude\)/i', $description) ? TRUE : FALSE;
|
||
if (!is_array($value) && !$doNotRender && ($this->checkForBadString($value) || $isTextarea)) {
|
||
$k2 = '['.$vk.']';
|
||
... | ... | |
TRUE,
|
||
FALSE
|
||
);
|
||
} elseif (preg_match('/^boolean/i',$description)) {
|
||
} elseif (preg_match('/^(<p>)?boolean/i',$description)) {
|
||
// Get the subpart for a checkbox
|
||
$booleanSubpart = t3lib_parsehtml::getSubpart($template, '###BOOLEAN###');
|
||
// Define the markers content
|
||
... | ... | |
);
|
||
// Define the markers content
|
||
$markers = array(
|
||
'description' => htmlspecialchars($description),
|
||
'description' => $description,
|
||
'key' => '[' . $k . '][' . $vk . ']',
|
||
'label' => htmlspecialchars(t3lib_div::fixed_lgd_cs($value, 40))
|
||
);
|
typo3/sysext/install/Resources/Public/Stylesheets/general.css (Arbeitskopie) | ||
---|---|---|
font: 62.8% Verdana, Arial, Helvetica, sans-serif;
|
||
}
|
||
pre {
|
||
font-size: 1.2em;
|
||
margin: 1em 1em;
|
||
}
|
||
code {
|
||
font-size: 1.2em;
|
||
}
|
||
p, form, fieldset, h3, h4, h5, h6, dl {
|
||
margin: 1em 0 1em 0;
|
||
}
|
||
... | ... | |
list-style: decimal;
|
||
}
|
||
dl dd {
|
||
margin-left: 1.5em;
|
||
}
|
||
fieldset li p {
|
||
margin-top: 0;
|
||
}
|
||
h2 {
|
||
margin: 2.5em 0 1.7em 0.8em;
|
||
color: #585858;
|