Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
[TASK] Temporarily restore frequently used, deprecated function
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessCoder committed Aug 13, 2017
1 parent 0eb29db commit f0b6fe5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Classes/Service/FluxService.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
use TYPO3\CMS\Extbase\Reflection\ObjectAccess;
use TYPO3\CMS\Extbase\Reflection\ReflectionService;
use TYPO3\CMS\Extbase\Service\FlexFormService;
use TYPO3\CMS\Fluid\View\TemplatePaths;

/**
* Flux FlexForm integration Service
Expand Down Expand Up @@ -299,6 +300,20 @@ public function message($message, $severity = GeneralUtility::SYSLOG_SEVERITY_IN
}
}

/**
* Returns the plugin.tx_extsignature.view array,
* or a default set of paths if that array is not
* defined in TypoScript.
*
* @param string $extensionName
* @return array|NULL
*/
public function getViewConfigurationForExtensionName($extensionName)
{
GeneralUtility::logDeprecatedFunction();
return (new TemplatePaths(ExtensionNamingUtility::getExtensionKey($extensionName)))->toArray();
}

/**
* @param mixed $value
* @param boolean $persistent
Expand Down

0 comments on commit f0b6fe5

Please sign in to comment.