forked from TYPO3-svn-archive/formhandler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] More compatibility fixes for TYPO3 6.2 (#55783)
git-svn-id: https://svn.typo3.org/TYPO3v4/Extensions/formhandler/trunk@85290 735d13b6-9817-0410-8766-e36946ffe9aa
- Loading branch information
reinhardfuehricht
committed
May 16, 2014
1 parent
11c9de4
commit 70875e4
Showing
7 changed files
with
13 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
* | ||
* @author Reinhard Führicht <[email protected]> | ||
*/ | ||
class Tx_Formhandler_Dispatcher extends tslib_pibase { | ||
class Tx_Formhandler_Dispatcher extends TYPO3\CMS\Frontend\Plugin\AbstractPlugin { | ||
|
||
/** | ||
* Compontent Manager | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
* | ||
* @author Reinhard Führicht <[email protected]> | ||
*/ | ||
abstract class Tx_Formhandler_AbstractView extends tslib_pibase { | ||
abstract class Tx_Formhandler_AbstractView extends TYPO3\CMS\Frontend\Plugin\AbstractPlugin { | ||
|
||
/** | ||
* The prefix id | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,13 +27,9 @@ | |
* @author Reinhard Führicht <[email protected]> | ||
*/ | ||
|
||
$compatibilityFuncs = Tx_Formhandler_CompatibilityFuncs::getInstance(); | ||
if($compatibilityFuncs->convertVersionNumberToInteger(TYPO3_version) < 6002000) { | ||
require_once(PATH_tslib . 'class.tslib_pibase.php'); | ||
} | ||
require_once(\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('formhandler') . 'Classes/Controller/Tx_Formhandler_Dispatcher.php'); | ||
|
||
class tx_formhandler_pi1 extends tslib_pibase { | ||
class tx_formhandler_pi1 extends TYPO3\CMS\Frontend\Plugin\AbstractPlugin { | ||
var $prefixId = 'tx_formhandler_pi1'; | ||
var $scriptRelPath = 'pi1/class.tx_formhandler_pi1.php'; | ||
var $extKey = 'formhandler'; | ||
|