| Server IP : 69.72.244.102 / Your IP : 216.73.216.164 Web Server : LiteSpeed System : Linux s3434.fra1.stableserver.net 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64 User : konzalta ( 1271) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/cwd/wp-content/plugins/master-addons/inc/admin/welcome/ |
Upload File : |
<?php
namespace MasterAddons\Admin\Dashboard\Addons;
use MasterAddons\Master_Elementor_Addons;
use MasterAddons\Admin\Dashboard\Addons\Elements\JLTMA_Addon_Elements;
use MasterAddons\Inc\Helper\Master_Addons_Helper;
?>
<div class="jltma-master-addons-features-list">
<div class="jltma-master-addons-dashboard-filter float-right">
<div class="jltma-filter-right">
<button class="jltma-addons-enable-all">
<?php
echo esc_html__( 'Enable All', 'master-addons' );
?>
</button>
<button class="jltma-addons-disable-all">
<?php
echo esc_html__( 'Disable All', 'master-addons' );
?>
</button>
<div class="jltma-tab-dashboard-header-wrapper inline-block">
<div class="jltma-tab-dashboard-header-right">
<button type="submit" class="jltma-tab-element-save-setting jltma-button">
<?php
_e( 'Save Settings', 'master-addons' );
?>
</button>
</div>
</div>
</div>
</div><!-- /.master-addons-dashboard-filter -->
<h3 class="mt-0"><?php
echo esc_html__( 'Content Elements', 'master-addons' );
?></h3>
<div class="jltma-master-addons-features-container mt-0 is-flex">
<?php
foreach ( JLTMA_Addon_Elements::$jltma_elements['jltma-addons']['elements'] as $key => $widget ) {
?>
<div class="jltma-master-addons-dashboard-checkbox">
<div class="jltma-master-addons-dashboard-checkbox-content">
<div class="jltma-master-addons-features-ribbon">
<?php
if ( !ma_el_fs()->can_use_premium_code__premium_only() && isset( $widget['is_pro'] ) && $widget['is_pro'] ) {
echo '<span class="jltma-pro-ribbon">Pro</span>';
}
?>
</div>
<div class="jltma-master-addons-content-inner">
<div class="jltma-master-addons-features-title">
<?php
echo esc_html__( $widget['title'] );
?>
</div> <!-- jltma_master_addons-features-title -->
<div class="jltma-addons-tooltip inline-block">
<?php
Master_Addons_Helper::jltma_admin_tooltip_info( 'Demo', $widget['demo_url'], 'eicon-device-desktop' );
Master_Addons_Helper::jltma_admin_tooltip_info( 'Documentation', $widget['docs_url'], 'eicon-info-circle-o' );
Master_Addons_Helper::jltma_admin_tooltip_info( 'Video Tutorial', $widget['tuts_url'], 'eicon-video-camera' );
?>
</div>
</div> <!-- .master-addons-content-inner -->
<div class="jltma-master-addons_feature-switchbox">
<label for="<?php
echo esc_attr( $widget['key'] );
?>" class="switch switch-text switch-primary switch-pill <?php
if ( !ma_el_fs()->can_use_premium_code__premium_only() && isset( $widget['is_pro'] ) && $widget['is_pro'] ) {
echo "ma-el-pro disabled";
}
?>">
<?php
?>
<input type="checkbox" id="<?php
echo esc_attr( $widget['key'] );
?>" class="jltma-switch-input " name="<?php
echo esc_attr( $widget['key'] );
?>" <?php
if ( !ma_el_fs()->can_use_premium_code__premium_only() && isset( $widget['is_pro'] ) && $widget['is_pro'] ) {
checked( 0, $this->jltma_get_element_settings[$widget['key']], false );
echo "disabled";
} else {
checked( 1, $this->jltma_get_element_settings[$widget['key']], true );
}
?> />
<?php
?>
<span data-on="On" data-off="Off" class="jltma-switch-label"></span>
<span class="jltma-switch-handle"></span>
</label>
</div>
</div>
</div>
<?php
}
?>
</div>
</div> <!-- .master_addons_feature-->
<?php