forked from BitBagCommerce/SyliusCmsPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPageImporterInterface.php
30 lines (26 loc) · 1.04 KB
/
PageImporterInterface.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
<?php
/*
* This file has been created by developers from BitBag.
* Feel free to contact us once you face any issues or want to start
* another great project.
* You can find more information about us on https://bitbag.shop and write us
* an email on [email protected].
*/
declare(strict_types=1);
namespace BitBag\SyliusCmsPlugin\Importer;
interface PageImporterInterface extends ImporterInterface
{
const CODE_COLUMN = 'code';
const SECTIONS_COLUMN = 'sections';
const CHANNELS_COLUMN = 'channels';
const PRODUCTS_COLUMN = 'products';
const SLUG_COLUMN = 'slug__locale__';
const NAME_COLUMN = 'name__locale__';
const IMAGE_COLUMN = 'image__locale__';
const META_KEYWORDS_COLUMN = 'meta_keywords__locale__';
const META_DESCRIPTION_COLUMN = 'meta_description__locale__';
const CONTENT_COLUMN = 'content__locale__';
const BREADCRUMB_COLUMN = 'breadcrumb__locale__';
const NAME_WHEN_LINKED_COLUMN = 'name_when_linked__locale__';
const DESCRIPTION_WHEN_LINKED_COLUMN = 'description_when_linked__locale__';
}