Typo3 Extensions entwickeln: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
F (Diskussion | Beiträge) |
F (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 5: | Zeile 5: | ||
* Grundlagen: [[Typo3 Flow]] | * Grundlagen: [[Typo3 Flow]] | ||
* Vorraussetzung: Installation der Extension: [[typo3_Extensions#extbase|extbase]] und [[typo3_Extensions#fluid|fluid]] | * Vorraussetzung: Installation der Extension: [[typo3_Extensions#extbase|extbase]] und [[typo3_Extensions#fluid|fluid]] | ||
== ext_emconf.php == | |||
<source lang="php"> | |||
<?php | |||
$EM_CONF[$_EXTKEY] = array( | |||
'title' => 'nc testit flow', | |||
'description' => 'nc test it flow description', | |||
'category' => 'fe', | |||
'author' => 'frederick', | |||
'author_email' => 'frederik [at] netz [dot] coop', | |||
'shy' => '', | |||
'dependencies' => '', | |||
'conflicts' => '', | |||
'priority' => '', | |||
'module' => '', | |||
'state' => 'alpha', | |||
'internal' => '', | |||
'uploadfolder' => 0, | |||
'createDirs' => '', | |||
'modify_tables' => '', | |||
'clearCacheOnLoad' => 1, | |||
'lockType' => '', | |||
'author_company' => '', | |||
'version' => '0.0.0', | |||
'constraints' => array( | |||
'depends' => array( | |||
/** | |||
* wichtig da die extbase und fluid extension unbedingt vorhanden sein müssen! | |||
*/ | |||
'php' => '5.2.0-0.0.0', | |||
'typo3' => '4.3.dev-0.0.0', | |||
'extbase'=> '1.0.1-0.0.0', | |||
'fluid' => '1.0.1-0.0.0' | |||
), | |||
'conflicts' => array( | |||
), | |||
'suggests' => array( | |||
), | |||
), | |||
); | |||
?> | |||
</source> | |||
= Probleme = | = Probleme = | ||
Version vom 26. Februar 2013, 16:45 Uhr
typo3 alte Seite: Typo3 Extensions entwickeln @deprecated
Hello world Extensions mit extbase und fluid
- Grundlagen: Typo3 Flow
- Vorraussetzung: Installation der Extension: extbase und fluid
ext_emconf.php
<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'nc testit flow',
'description' => 'nc test it flow description',
'category' => 'fe',
'author' => 'frederick',
'author_email' => 'frederik [at] netz [dot] coop',
'shy' => '',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'module' => '',
'state' => 'alpha',
'internal' => '',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 1,
'lockType' => '',
'author_company' => '',
'version' => '0.0.0',
'constraints' => array(
'depends' => array(
/**
* wichtig da die extbase und fluid extension unbedingt vorhanden sein müssen!
*/
'php' => '5.2.0-0.0.0',
'typo3' => '4.3.dev-0.0.0',
'extbase'=> '1.0.1-0.0.0',
'fluid' => '1.0.1-0.0.0'
),
'conflicts' => array(
),
'suggests' => array(
),
),
);
?>
Probleme
Could not analyse class:Tx_ _Controller_ Controller maybe not loaded or no autoloader? (More information)
peinlichst genau darauf achten das die Namen (Klassen-, Dateinamen) richtig sind