| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-eaw-wp-widget.php.tar |
themeisle-companion/vendor/codeinwp/elementor-extra-widgets/widgets/woo/class-eaw-wp-widget.php 0000644 00000001351 15115057067 0036511 0 ustar 00 home/xbodynamge/dev/wp-content/plugins <?php
/**
* Created by Coti.
*/
/**
* Class EAW_WP_Widget
*/
class EAW_WP_Widget extends WP_Widget {
/**
* Call a shortcode function by tag name.
*
* @since 1.0.3
*
* @param string $tag The shortcode whose function to call.
* @param array $atts The attributes to pass to the shortcode function. Optional.
* @param array $content The shortcode's content. Default is null (none).
*
* @return string|bool False on failure, the result of the shortcode on success.
*/
function do_shortcode( $tag, array $atts = array(), $content = null ) {
global $shortcode_tags;
if ( ! isset( $shortcode_tags[ $tag ] ) ) {
return false;
}
return call_user_func( $shortcode_tags[ $tag ], $atts, $content, $tag );
}
} themeisle-companion/vendor/codeinwp/elementor-extra-widgets/widgets/woo/class-eaw-wp-widget.php 0000644 00000001351 15115057122 0040403 0 ustar 00 home/xbodynamge/lebauwcentre/wp-content/plugins <?php
/**
* Created by Coti.
*/
/**
* Class EAW_WP_Widget
*/
class EAW_WP_Widget extends WP_Widget {
/**
* Call a shortcode function by tag name.
*
* @since 1.0.3
*
* @param string $tag The shortcode whose function to call.
* @param array $atts The attributes to pass to the shortcode function. Optional.
* @param array $content The shortcode's content. Default is null (none).
*
* @return string|bool False on failure, the result of the shortcode on success.
*/
function do_shortcode( $tag, array $atts = array(), $content = null ) {
global $shortcode_tags;
if ( ! isset( $shortcode_tags[ $tag ] ) ) {
return false;
}
return call_user_func( $shortcode_tags[ $tag ], $atts, $content, $tag );
}
}