fapi-member
Last commit date
_sources
2 years ago
languages
2 years ago
media
2 years ago
multiple-blocks
2 years ago
src
2 years ago
templates
2 years ago
vendor
2 years ago
fapi-member.php
2 years ago
readme.txt
2 years ago
uninstall.php
2 years ago
fapi-member.php
29 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FapiMember; |
| 4 | |
| 5 | use function define; |
| 6 | |
| 7 | /** |
| 8 | * Plugin Name: FAPI Member |
| 9 | * Plugin URI: https://fapi.cz/ |
| 10 | * Description: Plugin FAPI pro jednoduchou správu členských sekcí na webu. |
| 11 | * Version: 1.9.47 |
| 12 | * Requires at least: 5.8 |
| 13 | * Requires PHP: 5.6 |
| 14 | * Author: FAPI Business s.r.o. |
| 15 | * Author URI: https://fapi.cz/ |
| 16 | * License: GPLv2 or later |
| 17 | * Text Domain: fapi-member |
| 18 | * Domain Path: /languages |
| 19 | */ |
| 20 | |
| 21 | require __DIR__ . '/vendor/autoload.php'; |
| 22 | require __DIR__ . '/multiple-blocks/multiple-blocks.php'; |
| 23 | require __DIR__ . '/src/Elementor/fapi-member.php'; |
| 24 | require __DIR__ . '/src/Utils/functions.php'; |
| 25 | |
| 26 | define('FAPI_MEMBER_PLUGIN_VERSION', '1.9.47'); |
| 27 | |
| 28 | $FapiPlugin = new FapiMemberPlugin(); |
| 29 |