/home/techb158/balacoffee.com/wp-content/themes/Divi-1/includes/builder/module/helpers
Edit: /home/techb158/balacoffee.com/wp-content/themes/Divi-1/includes/builder/module/helpers/Overflow.php (1793B)
array_get( $props, $this->get_field_x( $prefix ), $default );
}
/**
* Return overflow Y axis value
*
* @param array $props
* @param mixed $default
* @param string $prefix
*
* @return string
*/
public function get_value_y( $props, $default = null, $prefix = '' ) {
return et_()->array_get( $props, $this->get_field_y( $prefix ), $default );
}
/**
* Returns overflow valid values
*
* @return array
*/
public function get_overflow_values() {
return array(
self::OVERFLOW_DEFAULT,
self::OVERFLOW_VISIBLE,
self::OVERFLOW_HIDDEN,
self::OVERFLOW_AUTO,
self::OVERFLOW_SCROLL,
);
}
}