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, ); } }