FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ultimate-addons-for-gutenberg
/
includes
/
blocks
/
container
Edit File: frontend.js.php
<?php /** * Frontend JS File. * * @since 2.8.0 * @package uagb */ /** * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined elsewhere. * * @var int $id The block ID. */ $selector = '.uagb-block-' . $id; $js = ''; if ( ! empty( $attr['UAGPosition'] ) && is_string( $attr['UAGPosition'] ) ) { $position_attrs = array_merge( $attr, array( 'UAGStickyLocation' => ! empty( $attr['UAGStickyLocation'] ) ? $attr['UAGStickyLocation'] : 'top', 'UAGStickyRestricted' => ! empty( $attr['UAGStickyRestricted'] ) ? $attr['UAGStickyRestricted'] : false, 'UAGStickyOffset' => ( ! empty( $attr['UAGStickyOffset'] ) && is_numeric( $attr['UAGStickyOffset'] ) ) ? $attr['UAGStickyOffset'] : 0, ) ); ob_start(); ?> window.addEventListener("load", function(){ UAGBBlockPositioning.init( <?php echo wp_json_encode( $position_attrs ); ?>, "<?php echo esc_attr( $selector ); ?>" ); }); <?php $js = ob_get_clean(); } return $js; ?>
Save
Back