You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1016 B
30 lines
1016 B
<?php
|
|
require_once __DIR__ . '/vendor/autoload.php'; // для работы Composer пакетов (библиотек)
|
|
|
|
// Initialize Timber.
|
|
Timber\Timber::init();
|
|
|
|
|
|
// require once вместо include использовать!
|
|
require_once __DIR__ . '/temp-functions/cart-logic.php';
|
|
require_once __DIR__ . '/temp-functions/timber-logic.php';
|
|
require_once __DIR__ . '/temp-functions/woocommerce-logic.php';
|
|
require_once __DIR__ . '/temp-functions/modules-logic.php';
|
|
require_once __DIR__ . '/temp-functions/ajax-logic.php';
|
|
require_once __DIR__ . '/temp-functions/shortcodes-logic.php';
|
|
require_once __DIR__ . '/temp-functions/blog-logic.php';
|
|
require_once __DIR__ . '/temp-functions/filters-logic.php';
|
|
require_once __DIR__ . '/temp-functions/custom-admin-panel-logic.php';
|
|
require_once __DIR__ . '/temp-functions/login-logic.php';
|
|
|
|
// include_module('forms');
|
|
// include_module('shop');
|
|
// include_module('profile');
|
|
// include_module('footer');
|
|
// include_module('author');
|
|
// include_module('layout');
|
|
|
|
|
|
|
|
|
|
|
|
|