You might find yourself needing the breakpoints for medium and small devices while coding your modules. But how can they stay in line with the values set in Beaver Builder?
No need to manually change the values or guess what they are, you can use the values that are set in the $global_settings object.
Include the following variable in your module-files and you’re good to go!
[pastacode lang=”php” manual=”%24global_settings%20%3D%20FLBuilderModel%3A%3Aget_global_settings()%3B” message=”” highlight=”” provider=”manual”/]
Now you can use it in a custom-field:
[pastacode lang=”php” manual=”%20%20%20%20%20%20%20%20%20%20%20%20’spacemedium’%20%3D%3E%20array(%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20’type’%20%20%20%20%20%20%20%20%20%20%3D%3E%20’text’%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20’label’%20%20%20%20%20%20%20%20%20%3D%3E%20__(%20’Medium%20Size’%2C%20’textdomain’%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20’default’%20%20%20%20%20%20%20%3D%3E%20%24global_settings-%3Emedium_breakpoint%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20’maxlength’%20%20%20%20%20%3D%3E%20’4’%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20’size’%20%20%20%20%20%20%20%20%20%20%3D%3E%20’5’%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20’placeholder’%20%20%20%3D%3E%20__(%20’px’%2C%20’textdomain’%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20)%2C” message=”” highlight=”” provider=”manual”/]