font-awesome
Last commit date
admin
8 months ago
block-editor
8 months ago
classic-editor
10 months ago
icon-chooser
5 months ago
includes
5 months ago
LICENSE
7 years ago
defines.php
10 months ago
font-awesome-init.php
1 year ago
font-awesome.php
1 year ago
index.php
5 months ago
readme.txt
8 months ago
uninstall.php
6 years ago
uninstall.php
12 lines
| 1 | <?php |
| 2 | // if uninstall.php is not called by WordPress, die |
| 3 | if (!defined('WP_UNINSTALL_PLUGIN')) { |
| 4 | die; |
| 5 | } |
| 6 | |
| 7 | require_once trailingslashit( dirname( __FILE__ ) ) . 'font-awesome.php'; |
| 8 | |
| 9 | if ( class_exists( 'FortAwesome\FontAwesome_Loader' ) ) : |
| 10 | FortAwesome\FontAwesome_Loader::maybe_uninstall( trailingslashit( dirname(__FILE__) ) ); |
| 11 | endif; |
| 12 |