Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Added a deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Apr 24, 2024
1 parent bba305d commit 24bc944
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
WordPress plugin pro zobrazování tabulky transakcí z Fio banky přes shortcode.

# PŘERUŠENÍ PODPORY PLUGINU

Plugin má přerušenou podporu a nebude dále aktualizován od dubna 2024. Je možné ho nadále používat, ale nebudou přidány žádné nová funkce a jakékoliv chyby nebudou opraveny.

## O pluginu

Kdo si chcete plugin stáhnout je na https://cs.wordpress.org/plugins/skaut-fio-bank-transactions/

Nápověda k pluginu je na https://napoveda.skaut.cz/dobryweb/skaut-fio-bank-transactions
Expand Down
9 changes: 9 additions & 0 deletions src/fio-transactions.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,15 @@ protected function initHooks() {
register_activation_hook( __FILE__, array( $this, 'activation' ) );
register_deactivation_hook( __FILE__, array( $this, 'deactivation' ) );
register_uninstall_hook( __FILE__, array( __CLASS__, 'uninstall' ) );

// Plugin deprecation notice
add_action( 'admin_notices', array( $this, 'deprecation_notice' ) );
}

function deprecation_notice() {
echo '<div class="notice notice-error"><p>';
echo 'Plugin Fio bank – transactions má přerušenou podporu a nebude dále aktualizován od dubna 2024. Je možné ho nadále používat, ale nebudou přidány žádné nová funkce a jakékoliv chyby nebudou opraveny.';
echo '</p></div>';
}

protected function init() {
Expand Down
4 changes: 4 additions & 0 deletions src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ License URI: http://www.gnu.org/licenses/gpl-3.0.html

Plugin pro zobrazování tabulky transakcí z Fio banky přes shortcode.

== PŘERUŠENÍ PODPORY PLUGINU ==

Plugin má přerušenou podporu a nebude dále aktualizován od dubna 2024. Je možné ho nadále používat, ale nebudou přidány žádné nová funkce a jakékoliv chyby nebudou opraveny.

== Description ==

<h2> Minimální požadavky</h2>
Expand Down

0 comments on commit 24bc944

Please sign in to comment.