PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
wordpress-social-login
/
includes
/
admin
/
components
/
tools
<?php /*! * WordPress Social Login * * http://miled.github.io/wordpress-social-login/ | https://github.com/miled/wordpress-social-login * (c) 2011-2015 Mohamed Mrassi and contributors | http://wordpress.org/plugins/wordpress-social-login/ */ // Exit if accessed directly if ( !defined( 'ABSPATH' ) ) exit; // -------------------------------------------------------------------- function wsl_component_tools_sections() { $sections = array( 'auth_playground' => 'wsl_component_tools_auth_playground' , 'diagnostics' => 'wsl_component_tools_diagnostics' , 'system_information' => 'wsl_component_tools_system_information' , 'repair_wsl_tables' => 'wsl_component_tools_repair_wsl_tables' , 'debug_mode' => 'wsl_component_tools_debug_mode' , 'development_mode' => 'wsl_component_tools_development_mode' , 'uninstall' => 'wsl_component_tools_uninstall' , ); $sections = apply_filters( 'wsl_component_tools_alter_sections', $sections ); foreach( $sections as $section => $action ) { add_action( 'wsl_component_tools_sections', $action ); } // HOOKABLE: do_action( 'wsl_component_tools_sections' ); } // -------------------------------------------------------------------- function wsl_component_tools_auth_playground() { ?> <div class="stuffbox"> <h3> <label><?php _wsl_e("Authentication Playground", 'wordpress-social-login') ?></label> </h3> <div class="inside"> <p> <?php _wsl_e('Authentication Playground will let you authenticate with the enabled social networks without creating any new user account. This tool will also give you a direct access to social networks apis via a lightweight console', 'wordpress-social-login') ?>. </p> <a class="button-primary" href="<?php echo wp_nonce_url( 'options-general.php?page=wordpress-social-login&wslp=auth-paly'); ?>"><?php _wsl_e("Go to the authentication playground", 'wordpress-social-login') ?></a> </div> </div> <?php } // -------------------------------------------------------------------- function wsl_component_tools_diagnostics() { ?> <div class="stuffbox"> <h3> <label><?php _wsl_e("WordPress Social Login Diagnostics", 'wordpress-social-login') ?></label> </h3> <div class="inside"> <p> <?php _wsl_e('This tool will check for the common issues and for the minimum system requirements', 'wordpress-social-login') ?>. </p> <a class="button-primary" href="<?php echo wp_nonce_url( 'options-general.php?page=wordpress-social-login&wslp=tools&do=diagnostics'); ?>"><?php _wsl_e("Run WordPress Social Login Diagnostics", 'wordpress-social-login') ?></a> </div> </div> <?php } // -------------------------------------------------------------------- function wsl_component_tools_system_information() { ?> <div class="stuffbox"> <h3> <label><?php _wsl_e("System information", 'wordpress-social-login') ?></label> </h3> <div class="inside"> <p> <?php _wsl_e('This tool will gather and display your website and server info. Please include these information when posting support requests, it will help me immensely to better understand any issues', 'wordpress-social-login') ?>. </p> <a class="button-primary" href="<?php echo wp_nonce_url( 'options-general.php?page=wordpress-social-login&wslp=tools&do=sysinfo'); ?>"><?php _wsl_e("Display your system information", 'wordpress-social-login') ?></a> </div> </div> <?php } // -------------------------------------------------------------------- function wsl_component_tools_repair_wsl_tables() { ?> <a name="repair-tables"></a> <div class="stuffbox"> <h3> <label><?php _wsl_e("Repair WSL tables", 'wordpress-social-login') ?></label> </h3> <div class="inside"> <p> <?php _wsl_e('This will attempt recreate WSL databases tables if they do not exist and will also add any missing field', 'wordpress-social-login') ?>. </p> <a class="button-primary" href="<?php echo wp_nonce_url( 'options-general.php?page=wordpress-social-login&wslp=tools&do=repair'); ?>"><?php _wsl_e("Repair WordPress Social Login databases tables", 'wordpress-social-login') ?></a> </div> </div> <?php } // -------------------------------------------------------------------- function wsl_component_tools_debug_mode() { $wsl_settings_debug_mode_enabled = get_option( 'wsl_settings_debug_mode_enabled' ); ?> <a name="debug-mode"></a> <div class="stuffbox"> <h3> <label><?php _wsl_e("Debug mode", 'wordpress-social-login') ?></label> </h3> <div class="inside"> <p> <?php _wsl_e('The <b>Debug mode</b> is an internal development tool built to track every action made by WSL during the authentication proces, which can be useful when debugging this plugin but note that it is highly technical and not documented', 'wordpress-social-login') ?>. </p> <p> <?php _wsl_e('When Debug mode is enabled and set to <code>Log actions in a file</code>, WSL will attempt to generate its log files under <em>/wp-content/uploads/wordpress-social-login</em>', 'wordpress-social-login') ?>. </p> <p> <?php _wsl_e('When Debug mode is enabled and set to <code>Log actions to database</code>, will create a new database table <code>wslwatchdog</code> and insert all actions names and arguments', 'wordpress-social-login') ?>. </p> <p> <?php _wsl_e('For more information, refer to WSL documentation under Advanced Troubleshooting > <a href="http://miled.github.io/wordpress-social-login/troubleshooting-advanced.html" target="_blank">Debug Mode</a>', 'wordpress-social-login') ?>. </p> <form method="post" id="wsl_setup_form" action="options.php"> <?php settings_fields( 'wsl-settings-group-debug' ); ?> <select name="wsl_settings_debug_mode_enabled"> <option <?php if( ! $wsl_settings_debug_mode_enabled ) echo "selected"; ?> value="0"><?php _wsl_e("Disabled", 'wordpress-social-login') ?></option> <option <?php if( $wsl_settings_debug_mode_enabled == 1 ) echo "selected"; ?> value="1"><?php _wsl_e("Enabled — Log actions in a file", 'wordpress-social-login') ?></option> <option <?php if( $wsl_settings_debug_mode_enabled == 2 ) echo "selected"; ?> value="2"><?php _wsl_e("Enabled — Log actions to database", 'wordpress-social-login') ?></option> </select> <input type="submit" class="button-primary" value="<?php _wsl_e("Save Settings", 'wordpress-social-login') ?>" /> <?php if( $wsl_settings_debug_mode_enabled ): ?> <a class="button-secondary" href="options-general.php?page=wordpress-social-login&wslp=watchdog"><?php _wsl_e('View WSL logs', 'wordpress-social-login') ?></a> <?php endif; ?> </form> </div> </div> <?php } // -------------------------------------------------------------------- function wsl_component_tools_development_mode() { $wsl_settings_development_mode_enabled = get_option( 'wsl_settings_development_mode_enabled' ); ?> <a name="dev-mode"></a> <div class="stuffbox"> <h3> <label><?php _wsl_e("Development mode", 'wordpress-social-login') ?></label> </h3> <div class="inside"> <p> <?php _wsl_e('When <b>Development Mode</b> is enabled, this plugin will display a debugging area on the footer of admin interfaces. <b>Development Mode</b> will also try generate and display a technical reports when something goes wrong. This report can help you figure out the root of the issues you may runs into', 'wordpress-social-login') ?>. </p> <p> <?php _wsl_e('Please, do not enable <b>Development Mode</b>, unless you are a developer or you have basic PHP knowledge', 'wordpress-social-login') ?>. </p> <p> <?php _wsl_e('For security reasons, <b>Development Mode</b> will auto switch to <b>Disabled</b> each time the plugin is <b>reactivated</b>', 'wordpress-social-login') ?>. </p> <p> <?php _wsl_e('It\'s highly recommended to keep the <b>Development Mode</b> <b style="color:#da4f49">Disabled</b> on production as it would be a security risk otherwise', 'wordpress-social-login') ?>. </p> <p> <?php _wsl_e('For more information, refer to WSL documentation under Advanced Troubleshooting > <a href="http://miled.github.io/wordpress-social-login/troubleshooting-advanced.html" target="_blank">Development Mode</a>', 'wordpress-social-login') ?>. </p> <form method="post" id="wsl_setup_form" action="options.php" <?php if( ! $wsl_settings_development_mode_enabled ) { ?>onsubmit="return confirm('Do you really want to enable Development Mode?\n\nPlease confirm that you have read and understood the abovementioned by clicking OK.');"<?php } ?>> <?php settings_fields( 'wsl-settings-group-development' ); ?> <select name="wsl_settings_development_mode_enabled"> <option <?php if( ! $wsl_settings_development_mode_enabled ) echo "selected"; ?> value="0"><?php _wsl_e("Disabled", 'wordpress-social-login') ?></option> <option <?php if( $wsl_settings_development_mode_enabled ) echo "selected"; ?> value="1"><?php _wsl_e("Enabled", 'wordpress-social-login') ?></option> </select> <input type="submit" class="button-danger" value="<?php _wsl_e("Save Settings", 'wordpress-social-login') ?>" /> </form> </div> </div> <?php } // -------------------------------------------------------------------- function wsl_component_tools_uninstall() { ?> <div class="stuffbox"> <h3> <label><?php _wsl_e("Uninstall", 'wordpress-social-login') ?></label> </h3> <div class="inside"> <p> <?php _wsl_e('This will permanently delete all Wordpress Social Login tables and stored options from your WordPress database', 'wordpress-social-login') ?>. <?php _wsl_e('Once you delete WSL database tables and stored options, there is NO going back. Please be certain', 'wordpress-social-login') ?>. </p> <a class="button-danger" href="<?php echo wp_nonce_url( 'options-general.php?page=wordpress-social-login&wslp=tools&do=uninstall'); ?>" onClick="return confirm('Do you really want to Delete all Wordpress Social Login tables and options?\n\nPlease confirm that you have read and understood the abovementioned by clicking OK.');"><?php _wsl_e("Delete all Wordpress Social Login tables and options", 'wordpress-social-login') ?></a> </div> </div> <?php } // --------------------------------------------------------------------
[+]
..
[-] wsl.components.tools.actions.php
[edit]
[-] wsl.components.tools.actions.job.php
[edit]
[-] wsl.components.tools.sidebar.php
[edit]
[-] index.php
[edit]