HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dmstechonline/social.dmstech.online/view/Update/index.php
<?php

/* Check the absolute path to the Social Auto Poster directory. */
if ( !defined( 'SAP_APP_PATH' ) ) {
    // If SAP_APP_PATH constant is not defined, perform some action, show an error, or exit the script
    // Or exit the script if required
    exit();
}

global $sap_common;
include SAP_APP_PATH . 'header.php';

include SAP_APP_PATH . 'sidebar.php';

$settings_object      = new SAP_Settings();
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
    <section class="content-header">
        <h1>
            <span class="d-flex flex-wrap align-items-center">
                <div class="page-title-icon register_license_update_icon"></div>
                <?php echo $sap_common->lang('register_license_update'); ?>
            </span>
        </h1>
    </section>

    <section class="content sap-update-wrap">
        <div class="row">
            <div class="col-xs-12">
                <?php
                echo $this->flash->renderFlash();
                $license_data = $this->get_license_data();
                ?>
                <div class="box">                    
                    <form id="sap_license_form" action="<?php echo SAP_SITE_URL . '/mingle-update/save_process/'; ?>" class=" " enctype="multipart/form-data" method="POST">
                        <div class="box-body"> 
                            <div class="row">
                                <div class="col-lg-6"> 
                                    <div class="form-group sap-share-link-parent" >
                                        <label><?php echo $sap_common->lang('current_version'); ?><span><?php echo SAP_VERSION; ?></span></label>
                                    </div>
                                    <div class="form-group sap-license-key-wrap" >
                                        <input class="form-control sap-license-email" placeholder="<?php echo $sap_common->lang('update_enter_email_plh'); ?>" name="sap_license_email" value="<?php echo!empty($license_data['license_email']) ? $license_data['license_email'] : ''; ?>">
                                    </div>
                                </div> 
                                <div class="col-lg-6">
                                    <div class="form-group sap-license-key-wrap" >
                                        <div class="form-group sap-share-link-parent" >
                                            <label>&nbsp</label>
                                        </div>
                                        <input class="form-control sap-license-key" placeholder="<?php echo $sap_common->lang('update_enter_license_plh'); ?>" name="sap_license_key" value="<?php echo!empty($license_data['license_key']) ? $license_data['license_key'] : ''; ?>">
                                        <?php if ( empty( $license_data['license_key'] ) ) {?>
                                            <input type="hidden" name="action" value="Activate License"> 
                                        <?php } else { ?>
                                            <input type="hidden" name="action" value="Deactivate License"> 
                                        <?php } ?>                                           
                                    </div>
                                </div>
                            </div> 
                            <?php if ( empty( $license_data['license_key'] ) ) {?>
                                <div class="col-lg-12 pull-right">
                                    <div class="row">
                                        <div class="col-lg-12">
                                            <div class="form-group sap-license-btn-wrap" >
                                                <button type="submit" name="sap_register_license" class="sap_register_license btn btn-success pull-left"> <?php echo $sap_common->lang('register_license'); ?></button>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            <?php } else { ?>
                                <div class="col-lg-12 pull-right">
                                    <div class="row">
                                        <div class="col-lg-12">
                                            <div class="form-group sap-license-btn-wrap pull-right" >
                                                <button type="submit" name="sap_deregister_license" class="sap_deregister_license btn btn-danger pull-left"> <?php echo $sap_common->lang('deregister_license'); ?></button>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            <?php } ?>
                        </div>
                    </form>
                    <?php if( ! empty( $license_data['license_key'] ) ) { ?>
                        <form id="sap_token_form" action="<?php echo SAP_SITE_URL . '/mingle-update/save_process/'; ?>" class="form-horizontal" enctype="multipart/form-data" method="POST">
                            <div class="box-body">  
                                <div class="col-lg-6">
                                    <div class="row">
                                        <div class="col-lg-10">
                                            <div class="form-group sap-share-link-parent" >
                                                <label><?php echo $sap_common->lang('codecanyon_access_token'); ?></label>
                                            </div>
                                            <div class="form-group sap-access-token-wrap" >
                                                <input class="form-control sap-access-token" placeholder="<?php echo $sap_common->lang('enter_codecanyon_access_token'); ?>" name="sap_access_token" value="<?php echo ! empty($license_data['access_token']) ? $license_data['access_token'] : ''; ?>">
                                                <p class="description">Click
                                                    <a href="https://docs.wpwebelite.com/mingle-saas/how-to-update-mingle" target="_blank">Here</a>
                                                for the documentation.</p>

                                                <?php if ( empty( $license_data['access_token'] ) ) {?>
                                                    <input type="hidden" name="access_token_action" value="Activate Access Token"> 
                                                <?php } else { ?>
                                                    <input type="hidden" name="access_token_action" value="Deactivate Access Token"> 
                                                <?php } ?>                                           
                                            </div>
                                        </div>
                                    </div>
                                </div>

                                <?php if ( empty( $license_data['access_token'] ) ) {?>
                                    <div class="col-lg-12 pull-right">
                                        <div class="row">
                                            <div class="col-lg-12 pull-right">
                                                <div class="form-group sap-access-token-btn-wrap pull-right" >
                                                    <button type="submit" name="sap_register_access_token" class="sap_register_access_token btn btn-primary pull-left"> <?php echo $sap_common->lang('register_access_token'); ?></button>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                <?php } else { ?>
                                    <div class="col-lg-3 pull-right">
                                        <div class="row">
                                            <div class="col-lg-12 pull-right">
                                                <div class="form-group sap-access-token-btn-wrap pull-right" >
                                                    <button type="submit" name="sap_deregister_access_token" class="sap_register_access_token btn btn-danger pull-left"> <?php echo $sap_common->lang('deregister_access_token'); ?></button>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                <?php } ?>
                            </div>
                        </form>
                    <?php } ?>
                    <?php if ( empty( $license_data['access_token'] ) ) {?>
                    <div class="box-body">
                        <div class="col-lg-12">
                            <div class="row">
                                <div class="token-steps"><?php echo $sap_common->lang('access_token_steps'); ?></div>
                            </div>
                        </div>
                    </div>            
                    <?php } ?>
                </div>
                <?php if ( ! empty( $license_data['access_token'] ) ) { ?>
                    <div class="box">                    
                        <div class="box-body">
                            <div class="col-lg-12">
                                <div class="row">
                                    <div class="col-lg-10">
                                        <div class="form-group sap-share-link-parent" >
                                            <?php
                                            if (!empty($_SESSION['Update_version']) && $_SESSION['Update_version'] > SAP_VERSION) {
                                                $mingle_site_name = empty( $settings_object->get_options('mingle_site_name') ) ? SAP_NAME : $settings_object->get_options('mingle_site_name');

                                                echo '<span><strong>There is a new version of ' . $mingle_site_name . ' available. <a href="https://www.wpwebelite.com/changelogs/mingle-sap-php-script/changelog.txt" target="_blank">View version ' . $_SESSION['Update_version'] . ' details</a> or Click on below button for update now.</strong> </span>';
                                            } else {
                                                $mingle_site_name = empty( $settings_object->get_options('mingle_site_name') ) ? SAP_NAME : $settings_object->get_options('mingle_site_name');
                                                echo '<span><strong>You have the latest version of Mingle - ' . $mingle_site_name . ' </strong> </span>';
                                            }
                                            ?>
                                        </div>
                                    </div>
                                    <div class="col-lg-10">
                                        <div class="sap-response">
                                            <div class="alert alert-dismissible obj-hide" role="alert"></div>
                                        </div>
                                        <?php if (!empty($_SESSION['Update_version']) && $_SESSION['Update_version'] > SAP_VERSION) { ?>
                                            <div class="form-group sap-check-for-update-wrap" >
                                                <button type="button" name="sap-check-for-update" class="sap-check-for-update btn btn-success pull-left"><?php echo $sap_common->lang('update_loader'); ?></button>
                                                <div class="update_loader"><img src="<?php echo SAP_SITE_URL.'/assets/images/ajax-loader.gif'; ?>" alt="Update"></div>
                                                <p class="description update_msg"><strong><?php echo $sap_common->lang('page_auto_refresh_after_the_success_update_msg'); ?></strong></p>
                                            </div>
                                        </div>
                                    <?php }
                                    ?>
                                </div>
                            </div>
                        </div>
                    </div>
                <?php } ?>
            </div>

        </div>
    </section>

</div>

<?php include SAP_APP_PATH . 'footer.php'; ?>