Skip to content

Commit

Permalink
Declare all classes under lib and model as deprecated.
Browse files Browse the repository at this point in the history
  • Loading branch information
franzholz committed Jun 7, 2023
1 parent 5b9825f commit 562d295
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-06-07 Franz Holzinger <[email protected]>
* Declare all classes under lib and model as deprecated. They will be removed in 2024.

2023-06-02 Franz Holzinger <[email protected]>
* compatibility Deprecation no.92947: replace TYPO3_MODE by TYPO3 or remove this constant
* add compatibility for TYPO3 12
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'author_company' => '',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.1.99',
'php' => '7.4.0-8.4.99',
'typo3' => '10.4.0-12.4.99',
'div2007' => '1.14.0-0.0.0',
],
Expand Down
1 change: 1 addition & 0 deletions lib/class.tx_transactor_api.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
use TYPO3\CMS\Core\Utility\GeneralUtility;

// deprecated: will be removed in 2024

class tx_transactor_api {
protected static $cObj;
Expand Down
2 changes: 2 additions & 0 deletions lib/class.tx_transactor_listener.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;


// deprecated: will be removed in 2024

abstract class tx_transactor_listener {

/**
Expand Down
3 changes: 3 additions & 0 deletions model/class.tx_transactor_gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;


// deprecated: will be removed in 2024


/**
* Abstract class defining the interface for gateway implementations.
*
Expand Down
3 changes: 3 additions & 0 deletions model/class.tx_transactor_gatewayfactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;


// deprecated: will be removed in 2024


final class tx_transactor_gatewayfactory {

private static $instance = false; // Holds an instance of this class
Expand Down
4 changes: 4 additions & 0 deletions model/class.tx_transactor_gatewayproxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;



// deprecated: will be removed in 2024


/**
* Proxy class implementing the interface for gateway implementations. This
* class hangs between the real gateway implementation and the application
Expand Down
1 change: 1 addition & 0 deletions model/class.tx_transactor_language.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
*
*/

// deprecated: will be removed in 2024

class tx_transactor_language extends tx_div2007_alpha_language_base implements \TYPO3\CMS\Core\SingletonInterface {
public function init1 ($pObj, $cObj, $conf, $scriptRelPath) {
Expand Down
2 changes: 2 additions & 0 deletions model/class.tx_transactor_model_control.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@

use TYPO3\CMS\Core\Utility\GeneralUtility;

// deprecated: will be removed in 2024


class tx_transactor_model_control {

Expand Down

0 comments on commit 562d295

Please sign in to comment.