PluginProbe
Depicter — Popup & Slider Builder / trunk
Depicter — Popup & Slider Builder vtrunk
4.8.1 trunk 1.0.0 1.1.0 1.1.2 1.1.4 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.5 1.3.8 1.5.0 1.5.1 1.5.2 1.5.5 1.6.0 1.6.1 1.6.2 1.7.0 All 76 releases
depicter / app / src / Document / CSS / Breakpoints.php

Breakpoints.php in Depicter — Popup & Slider Builder trunk, at app/src/Document/CSS/Breakpoints.php

44 lines 858 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Depicter\Document\CSS;
3
4
5 class Breakpoints
6 {
7 const DESKTOP = 'default';
8 const TABLET = 'tablet';
9 const MOBILE = 'mobile';
10
11 const DESKTOP_SIZE = '';
12 const TABLET_SIZE = '1024';
13 const MOBILE_SIZE = '767';
14
15 public static function names(){
16 return array_keys( self::all() );
17 }
18
19 public static function all(){
20 return [
21 self::DESKTOP => self::DESKTOP_SIZE,
22 self::TABLET => self::TABLET_SIZE,
23 self::MOBILE => self::MOBILE_SIZE
24 ];
25 }
26
27 protected static function getSize( $breakpoint_name = 'default' ){
28 if( isset( self::all()[ $breakpoint_name ] ) ){
29 return self::all()[ $breakpoint_name ];
30 }
31 return '';
32 }
33
34 public static function getParentDevice( $device ) {
35 $devices = [
36 self::DESKTOP => '',
37 self::TABLET => self::DESKTOP,
38 self::MOBILE => self::TABLET
39 ];
40
41 return $devices[ $device ] ?? '';
42 }
43 }
44