function breakpoints_breakpoint_empty_array in Breakpoints 7
Empty breakpoint array.
2 calls to breakpoints_breakpoint_empty_array()
- breakpoints_breakpoint_empty_object in ./
breakpoints.module - Empty breakpoint object.
- breakpoints_breakpoint_validate in ./
breakpoints.module - Validate a single breakpoint.
File
- ./
breakpoints.module, line 480 - Breakpoints @todo: provide button to reload breakpoints from theme
Code
function breakpoints_breakpoint_empty_array() {
return array(
'name' => '',
'machine_name' => '',
'breakpoint' => '',
'source' => '',
'source_type' => '',
'status' => TRUE,
'weight' => 0,
'multipliers' => array(),
);
}