-
Notifications
You must be signed in to change notification settings - Fork 0
/
function.php
55 lines (52 loc) · 2.64 KB
/
function.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
function create_admin_page()
{
function add_my_page()
{
?>
<h1 class="wp-heading-inline">Обновление остатков и цен товаров из XML файла</h1>
<form method="post" action="<?= plugins_url() . "/product-xml-updater/controller.php" ?>"
id="xml-form" enctype="multipart/form-data">
<div id="poststuff">
<div id="normal-sortables" class="meta-box-sortables">
<div id="text-id" class="postbox options-postbox">
<div class="inside" id="inside">
<label class="lbl-xml" for="xml-file">Выберите файл: </label>
<input id="xml-file" name="xml-file" type="file" accept="text/xml" />
<p class="description">Допустимый формат: xml</p>
<div class="block-button">
<input type="button" class="my-button button-action"
onclick="loadXML()" value="Загрузить">
<p class="notification"></p>
</div>
</div>
<div class="inside">
<label>Не обнулять скрытые вариации <input type="checkbox" name="isnozeroing_hide"
<?= get_option('var_hide_no_zero') ? 'checked': '';?>/></label>
</div>
<div class="inside">
<label>Не обнулять вариации, отсутствующие в файле <input type="checkbox" name="isnozeroing_empty"
<?= get_option('var_empty_no_zero') ? 'checked': '';?>/></label>
</div>
<div class="log-txt-unfound"></div>
<div class="log-txt-zeroing"></div>
</div>
</div>
</div>
</form>
<?php
wp_enqueue_script('admin-script', plugins_url() . '/product-xml-updater/js/script.js',
array(),'1.0.0', true);
wp_enqueue_style('admin-style', plugins_url() . '/product-xml-updater/css/style.css');
}
add_action('admin_menu', function () {
add_submenu_page(
'woocommerce',
'Обновление товаров из xml файла',
'Обновление товаров из xml файла',
'manage_options',
'product_xml_updater',
'add_my_page'
);
});
}