Kommentare zu: TYPO3 6.1 Erstellen von Inhalt nicht möglich https://blog.andreasbecker.de/2013/05/07/typo3-6-1-erstellen-von-inhalt-nicht-moglich/ Quirkst du noch, oder validierst du schon? Fri, 04 Jan 2019 20:44:18 +0000 hourly 1 https://wordpress.org/?v=5.0.4 Von: Heidi Arens https://blog.andreasbecker.de/2013/05/07/typo3-6-1-erstellen-von-inhalt-nicht-moglich/#comment-23 Fri, 22 Nov 2013 15:14:20 +0000 https://blog.andreasbecker.de/?p=256#comment-23 Vielen Danks!

]]>
Von: Prajit https://blog.andreasbecker.de/2013/05/07/typo3-6-1-erstellen-von-inhalt-nicht-moglich/#comment-21 Sun, 15 Sep 2013 19:56:01 +0000 https://blog.andreasbecker.de/?p=256#comment-21 Hallo, danke für Eure Hilfe. Hatte schon eine Weile nach der Lösung für mein Problem gesucht und diese nun endlich bei Euch gefunden. 🙂 Viele Grüße

]]>
Von: Andreas Becker https://blog.andreasbecker.de/2013/05/07/typo3-6-1-erstellen-von-inhalt-nicht-moglich/#comment-19 Tue, 03 Sep 2013 14:43:38 +0000 https://blog.andreasbecker.de/?p=256#comment-19 Hallo Heidi,
wie Markus schon geschrieben hat, musst du die von Ihm gepostete Zeile in deiner Datei ersetzen.

Du hast ja schon die richtige Datei, jetzt einfach in der Datei nach der folgenden Zeile suchen:
$LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS[‚LANG‘]->lang);

und mit dem Code von Markus ersetzen.

]]>
Von: Heidi Arens https://blog.andreasbecker.de/2013/05/07/typo3-6-1-erstellen-von-inhalt-nicht-moglich/#comment-18 Tue, 03 Sep 2013 08:59:56 +0000 https://blog.andreasbecker.de/?p=256#comment-18 Guten Tag
wos soll ich der eintrag neue code einsetzen?
Vielen Dank für ihr hilfe
mit freundlichen grüssen Heidi Arens

/////////////////////////////////////////

/**
* Class that adds the wizard icon.
*
* @author
* @package TYPO3
* @subpackage tx_dmfgalleria
*/

class tx_dmfgalleria_pi1_wizicon {

/**
* Processing the wizard items array
*
* @param array $wizardItems: The wizard items
* @return Modified array with wizard items
*/
function proc($wizardItems) {
global $LANG;

$LL = $this->includeLocalLang();

$wizardItems[‚plugins_tx_dmfgalleria_pi1‘] = array(
‚icon’=>t3lib_extMgm::extRelPath(‚dmf_galleria‘).’pi1/ce_wiz.gif‘,
‚title’=>$LANG->getLLL(‚pi1_title‘,$LL),
‚description’=>$LANG->getLLL(‚pi1_plus_wiz_description‘,$LL),
‚params’=>’&defVals[tt_content][CType]=list&defVals[tt_content][list_type]=dmf_galleria_pi1‘
);

return $wizardItems;
}

/**
* Reads the [extDir]/locallang.xml and returns the $LOCAL_LANG array found in that file.
*
* @return The array with language labels
*/
function includeLocalLang() {
$llFile = t3lib_extMgm::extPath(‚dmf_galleria‘).’locallang.xml‘;
$LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS[‚LANG‘]->lang);

return $LOCAL_LANG;
}

}

if (defined(‚TYPO3_MODE‘) && $TYPO3_CONF_VARS[TYPO3_MODE][‚XCLASS‘][‚ext/dmf_galleria/pi1/class.tx_dmfgalleria_pi1_wizicon.php‘]) {
include_once($TYPO3_CONF_VARS[TYPO3_MODE][‚XCLASS‘][‚ext/dmf_galleria/pi1/class.tx_dmfgalleria_pi1_wizicon.php‘]);
}

?>

////////////////////////////////////

]]>
Von: Markus Röder https://blog.andreasbecker.de/2013/05/07/typo3-6-1-erstellen-von-inhalt-nicht-moglich/#comment-17 Sat, 29 Jun 2013 08:12:00 +0000 https://blog.andreasbecker.de/?p=256#comment-17 Danke für deinen Tip 🙂

Für folgende zeile :
$LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS[‚LANG‘]->lang);

das ein setzen:

$version = class_exists(‚t3lib_utility_VersionNumber‘)
? t3lib_utility_VersionNumber::convertVersionNumberToInteger(TYPO3_version)
: t3lib_div::int_from_ver(TYPO3_version);
if ($version >= 4007000) {
$object = t3lib_div::makeInstance(‚t3lib_l10n_parser_Llxml‘);
$LOCAL_LANG = $object->getParsedData($llFile, $GLOBALS[‚LANG‘]->lang);
} else {
$LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS[‚LANG‘]->lang);
}

LG
Markus

]]>