typo3-extensions

TYPO3 - properly edit extension template

十年热恋 提交于 2020-01-17 09:37:09
问题 I am using TYPO3 7.6.13 and I am trying to customize news extension. I am trying to insert my own custom template but TYPO3 can't find it, therefore default template is always included. I have customized setup.txt and constants.txt files inside the Configuration/TypoScript directory. I also created custom directories for templates and partials inside the fileadmin directory: fileadmin/templates/ext/news/templates/ fileadmin/templates/ext/news/partials/ This is part of setup.txt: plugin.tx

TYPO3 - properly edit extension template

强颜欢笑 提交于 2020-01-17 09:34:10
问题 I am using TYPO3 7.6.13 and I am trying to customize news extension. I am trying to insert my own custom template but TYPO3 can't find it, therefore default template is always included. I have customized setup.txt and constants.txt files inside the Configuration/TypoScript directory. I also created custom directories for templates and partials inside the fileadmin directory: fileadmin/templates/ext/news/templates/ fileadmin/templates/ext/news/partials/ This is part of setup.txt: plugin.tx

Typo3 accessing an existing table to consume data of it

天涯浪子 提交于 2020-01-06 06:01:34
问题 I tried to integrate an existing table to my extension. The problem is that the content of the table isn't taken over. I created a new model with the name of the existing table and named the properties according to the existing column names. I also implemented the corresponding getters and setters of the properties. The name of the existing table is tx_institutsseminarverwaltung_domain_model_event. What is my failure in this case? Just want to access the data of an existing table from another

composer installs own TYPO3 extension in wrong path

守給你的承諾、 提交于 2020-01-05 23:31:23
问题 I have a own TYPO3 extension hosted on bitbucket. Getting this via composer works (see here for input). The extension is downloaded into my vendor folder. Being there i cannot install the extension via extension-manager. How can I getting my ext into typo3conf/ext (ensuring autoloading will work)? The extensions coming via { "type": "composer", "url": "http://composer.typo3.org/" } are going to (as expected): web/typo3config/ext here is my project composer.json: { "repositories": [ { "type":

How do you translate EXT:Form forms in TYPO3 CMS 8.7 LTS?

我是研究僧i 提交于 2019-12-29 09:37:11
问题 I'm new to TYPO3 and starting out with 8.7 LTS. I have created several forms with the default "form" extension. My site requires some of these forms to be translated into up to 5 other languages. So far the only solution I've found is to copy the forms and then have a separate form for each translation, but this does not seem like the best solution, as long term it would lead to form divergence. Is it possible to add alternate translations directly in the YAML file or point to a translation

Typo3 Error: The ColumnMap for property is missing

送分小仙女□ 提交于 2019-12-25 12:09:31
问题 I'm using Typo3 version 8.7.8 and I'm developing an extention. The two tables "auftrag" and "verstorbener" are connectet with a 1:n relation. I try to search for a field in the table "verstorbener" in the repository of "auftrag". The relation of both is necessary. If I try to execute the following query I get the error "The ColumnMap for property "verstorbener" of class "...\Auftrag" is missing." $name = "Mustermann"; $query->matching( $query->logicalAnd( $query->equals('verstorbener.nachname

How to extend femanager controller under php 7

删除回忆录丶 提交于 2019-12-25 08:58:57
问题 Since using PHP 7.0 and higher, the strict mode of php generates warnings like this: PHP Warning: Declaration of In2code\Femanagerextended\Controller\EditController::updateAction(In2code\Femanagerextended\Domain\Model\User $user) should be compatible with In2code\Femanager\Controller\EditController::updateAction(In2code\Femanager\Domain\Model\User $user) in ($PATH)\typo3conf\ext\femanagerextended\Classes\Controller\EditController.php line 17 when trying to extend an existing controller of the

typo3 7, bootstrap_package, RealUrl and own extension

百般思念 提交于 2019-12-25 08:21:36
问题 I setup a typo3 with the bootstrap_package; created with the extension builder my own extension and installed realURL with auto conf and hoped it would work. It did not. I tried to write my own conf but it is ignored but somewhere the page settings are beeing made. The auto generated file already had a no_cache setting but it isn't beeing interpreted and my own settings are also not used but the page settings are. any ideas? my url currently looks like this: http://localhost/test/sub/ ?tx

Extension Manager is in offline mode. No TER connection available in TYPO3

天大地大妈咪最大 提交于 2019-12-25 04:56:07
问题 I have installed TYPO3 Version 7.6.15 by using composer and also I am using the Xampp version 7.0.0. I have installed many extensions and activated them successfully at the backend of my TYPO3 page. Now, I have installed the Ecodev/typo3-cms-speciality-distribution via composer. and i am trying to activate it from extension manager but it is giving me following error. Error Now, I have no idea, what to do? at this link https://github.com/Ecodev/typo3-cms-speciality-distribution it is written

TYPO3: Reading the values of a TCA 'type' => 'check' (bitmask)

你离开我真会死。 提交于 2019-12-25 01:45:36
问题 I need to show a selection of days in an event in the frontend: in my TCA I set the field like this: 'days' => [ 'exclude' => true, 'label' => 'choose weekdays', 'config' => [ 'type' => 'check', 'eval' => 'required,unique', 'items' => [ ['monday',''], ['thuesday',''], ['wednesday',''], ['thursday',''], ['friday',''], ['saturday',''], ['sunday',''], ], 'cols' => 'inline', ], ], That stores an integer in the db, but now I have to display the selected days in a fluid template in the frontend.