D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
cwd
/
wp-content
/
plugins
/
aeen-core
/
elementor
/
button
/
Filename :
view.php
back
Copy
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Roofix_Core; extract( $data ); $attr = ''; if ( !empty( $data['url']['url'] ) ) { $attr = 'href="' . $data['url']['url'] . '"'; $attr .= !empty( $data['url']['is_external'] ) ? ' target="_blank"' : ''; $attr .= !empty( $data['url']['nofollow'] ) ? ' rel="nofollow"' : ''; } ?> <?php if( !empty( $data['btntext'] ) ) : ?> <a <?php echo $attr; ?> class="btn-fill"><?php echo esc_html( $data['btntext'] ); ?></a> <?php endif; ?>