Skip to content

Commit 017e01c

Browse files
committed
MAGETWO-56740: Merge branch 'develop' of github.com:magento/magento2ce into MAGETWO-56740
2 parents 6afe5b2 + 37692c8 commit 017e01c

File tree

19 files changed

+1074
-116
lines changed

19 files changed

+1074
-116
lines changed

app/code/Magento/Deploy/Console/Command/DeployStaticContentCommand.php

Lines changed: 444 additions & 15 deletions
Large diffs are not rendered by default.
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?php
2+
/**
3+
* Copyright © 2016 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
namespace Magento\Deploy\Console\Command;
8+
9+
interface DeployStaticOptionsInterface
10+
{
11+
/**
12+
* Key for dry-run option
13+
*/
14+
const DRY_RUN = 'dry-run';
15+
16+
/**
17+
* Key for languages parameter
18+
*/
19+
const LANGUAGE = 'language';
20+
21+
/**
22+
* Key for exclude languages parameter
23+
*/
24+
const EXCLUDE_LANGUAGE = 'exclude-language';
25+
26+
/**
27+
* Key for javascript option
28+
*/
29+
const NO_JAVASCRIPT = 'no-javascript';
30+
31+
/**
32+
* Key for css option
33+
*/
34+
const NO_CSS = 'no-css';
35+
36+
/**
37+
* Key for less option
38+
*/
39+
const NO_LESS = 'no-less';
40+
41+
/**
42+
* Key for images option
43+
*/
44+
const NO_IMAGES = 'no-images';
45+
46+
/**
47+
* Key for fonts option
48+
*/
49+
const NO_FONTS = 'no-fonts';
50+
51+
/**
52+
* Key for misc option
53+
*/
54+
const NO_MISC = 'no-misc';
55+
56+
/**
57+
* Key for html option
58+
*/
59+
const NO_HTML = 'no-html';
60+
61+
/**
62+
* Key for html option
63+
*/
64+
const NO_HTML_MINIFY = 'no-html-minify';
65+
66+
/**
67+
* Key for theme option
68+
*/
69+
const THEME = 'theme';
70+
71+
/**
72+
* Key for exclude theme option
73+
*/
74+
const EXCLUDE_THEME = 'exclude-theme';
75+
76+
/**
77+
* Key for area option
78+
*/
79+
const AREA = 'area';
80+
81+
/**
82+
* Key for exclude area option
83+
*/
84+
const EXCLUDE_AREA = 'exclude-area';
85+
86+
/**
87+
* Jey for jobs option
88+
*/
89+
const JOBS_AMOUNT = 'jobs';
90+
91+
/**
92+
* Force run of static deploy
93+
*/
94+
const FORCE_RUN = 'force';
95+
}

0 commit comments

Comments
 (0)