Skip to content

Commit

Permalink
[CLEANUP] code styles, remove extension builder files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Friese committed Feb 8, 2018
1 parent 75315e6 commit e13e3b4
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 130 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.idea/
2 changes: 0 additions & 2 deletions Classes/Controller/GalleriaController.php
Original file line number Diff line number Diff line change
Expand Up @@ -596,5 +596,3 @@ protected function addFlickrCode($item, $iteration) {


}

?>
2 changes: 0 additions & 2 deletions Classes/Provider/PluginConfigurationProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,3 @@ class PluginConfigurationProvider extends \FluidTYPO3\Flux\Provider\Provider {
protected $templatePathAndFilename = 'EXT:flux_galleria/Resources/Private/Templates/Galleria/Index.html';

}

?>
2 changes: 1 addition & 1 deletion Classes/ViewHelpers/FetchFilesViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ protected function getFilenamesOfType() {

}

}
}
2 changes: 0 additions & 2 deletions Classes/ViewHelpers/GalleriaFluxViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,3 @@ public function render() {


}

?>
93 changes: 0 additions & 93 deletions Configuration/ExtensionBuilder/settings.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions ExtensionBuilder.json

This file was deleted.

5 changes: 0 additions & 5 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,9 @@
'constraints' => array(
'depends' => array(
'typo3' => '6.1.0-8.7.99',
'cms' => '',
'extbase' => '',
'fluid' => '',
'flux' => '7.1.0-8.2.99',
),
'conflicts' => array(),
'suggests' => array(),
)
);

?>
22 changes: 7 additions & 15 deletions ext_localconf.php
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
<?php
if (!defined('TYPO3_MODE')) {
die ('Access denied.');
die ('Access denied.');
}

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'DMF.' . $_EXTKEY,
'Frontend',
array(
'Galleria' => 'index',
),
// non-cacheable actions
array(

)
'DMF.' . $_EXTKEY,
'Frontend',
[
'Galleria' => 'index',
],
[]
);

## EXTENSION BUILDER DEFAULTS END TOKEN - Everything BEFORE this line is overwritten with the defaults of the extension builder


?>
5 changes: 0 additions & 5 deletions ext_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,5 @@

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile($_EXTKEY, 'Configuration/TypoScript', 'Galleria extension for TYPO3');

## EXTENSION BUILDER DEFAULTS END TOKEN - Everything BEFORE this line is overwritten with the defaults of the extension builder

# register plugin for flux configuration
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['fluxgalleria_frontend'] = 'pi_flexform';
\FluidTYPO3\Flux\Core::registerConfigurationProvider('DMF\\FluxGalleria\\Provider\\PluginConfigurationProvider');

?>
Empty file removed ext_tables.sql
Empty file.

0 comments on commit e13e3b4

Please sign in to comment.