comparison core/modules/breakpoint/src/BreakpointInterface.php @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
1 <?php
2
3 namespace Drupal\breakpoint;
4
5 /**
6 * Interface for Breakpoint plugins.
7 */
8 interface BreakpointInterface {
9
10 /**
11 * Returns the translated label.
12 *
13 * @return string
14 * The translated label.
15 */
16 public function getLabel();
17
18 /**
19 * Returns the weight.
20 *
21 * @return int
22 * The weight.
23 */
24 public function getWeight();
25
26 /**
27 * Returns the media query.
28 *
29 * @return string
30 * The media query.
31 */
32 public function getMediaQuery();
33
34 /**
35 * Returns the multipliers.
36 *
37 * @return array
38 * The multipliers.
39 */
40 public function getMultipliers();
41
42 /**
43 * Returns the provider.
44 *
45 * @return string
46 * The provider.
47 */
48 public function getProvider();
49
50 /**
51 * Returns the breakpoint group.
52 *
53 * @return string
54 * The breakpoint group.
55 */
56 public function getGroup();
57
58 }