05. Adding Devices to Control Stack
A. Defining Device Constants
abstract class Controls_Stack {
/**
* Responsive 'desktop' device name.
*/
const RESPONSIVE_DESKTOP = 'desktop';
/**
* Responsive 'tablet' device name.
*/
const RESPONSIVE_TABLET = 'tablet';
/**
* Responsive 'mobile' device name.
*/
const RESPONSIVE_MOBILE = 'mobile';
B. Adding Defined Constants to control list functions
Files Attachment
Last updated