Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandrew committed Jul 27, 2017
0 parents commit 9e22be3
Show file tree
Hide file tree
Showing 9 changed files with 375 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# PhpStorm
.idea

# macOS
.DS_Store

*.log
339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# WordPress Плагин Woo2YML-Yandex-Market
WordPress Плагин Woo2YML-Yandex-Market предназначен для экспорта товарных предложений из каталога товаров WooCommerce в YML формат [Яндекс Маркета](https://yandex.ru/support/partnermarket/yml/about-yml.html).
1 change: 1 addition & 0 deletions assets/coffee/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
deny from all
1 change: 1 addition & 0 deletions assets/sass/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
deny from all
1 change: 1 addition & 0 deletions includes/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
deny from all
1 change: 1 addition & 0 deletions languages/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
deny from all
4 changes: 4 additions & 0 deletions uninstall.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
19 changes: 19 additions & 0 deletions woo2yml-yandex-market.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php
/**
* Plugin Name: WooCommerce items export to YML format Yandex Market
* Plugin URI: https://github.com/mvandrew/woo2yml-yandex-market
* Version: 1.0.0
* Description: WordPress plugin for WooCommerce items export to YML format Yandex Market.
* Author: Andrey Mishchenko
* Tested up to: 4.8
* Author URI: http://www.msav.ru/
* Text Domain: woo2yml-yandex-market
* Domain Path: /languages/
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*
* @package woo2yml-yandex-market
* @author Andrey Mishchenko
*/

if ( ! defined( 'ABSPATH' ) ) { exit; }

0 comments on commit 9e22be3

Please sign in to comment.