Dmitriy | Инициализация.

This commit is contained in:
27 changed files with 1464 additions and 0 deletions

38
price-updates.php Normal file
View File

@@ -0,0 +1,38 @@
<?php
/**
* Plugin Name: Price Updates
* Description: Update price for products
* Version: 1.0.0
* Requires PHP: 8.0
* Author: Good Projects
*
* @package price-updates
*/
defined( 'ABSPATH' ) || exit;
require __DIR__ . '/vendor/autoload.php';
define("PRICE_UPDATES_VERSION", "1.0.0");
define("PRICE_UPDATES_PLUGIN_DIR", __DIR__);
define("PRICE_UPDATES_PLUGIN_URL", plugin_dir_url(__FILE__));
use Cosmopet\PriceUpdates\RestApi;
use Cosmopet\PriceUpdates\Admin\Menu;
use Cosmopet\PriceUpdates\Parser\GoogleTableParser;
class PriceUpdates {
public function __construct() {
// Инициализация меню и страниц в админ панели
Menu::init();
// Регистрация rest api контроллеров
RestApi::register();
// Инициализируем парсер гугл-таблиц (клиента и сервиса для работы с ней)
GoogleTableParser::init();
}
}
new PriceUpdates();