<?php

wplc_stats("settings");
if (function_exists("wplc_string_check")) {
    wplc_string_check();
}
$wplc_settings = get_option("WPLC_SETTINGS");
?>

<?php 
if (get_option("WPLC_HIDE_CHAT") == true) {
    $wplc_hide_chat = "checked";
} else {
    $wplc_hide_chat = "";
}
?>
<div class="wrap">
    <style>
        .wplc_light_grey{
            color: #666;
        }
    </style>
    <div id="icon-edit" class="icon32 icon32-posts-post">
        <br>
    </div>
    <h2><?php 
_e("WP Live Chat Support Settings", "wplivechat");
?>
</h2>
    <?php 
$wplc_mail_type = get_option("wplc_mail_type");
/**
 * Build the chat box
 * @return void
 * @since  6.0.00
 * @author  Nick Duncan <*****@*****.**>
 */
function wplc_output_box_5100()
{
    wplc_string_check();
    do_action("wplc_hook_output_box_header");
    do_action("wplc_hook_output_box_body");
    do_action("wplc_hook_output_box_footer");
}
/**
 * Build the chat box
 * @return void
 * @since  6.0.00
 * @author  Nick Duncan <*****@*****.**>
 */
function wplc_output_box_5100($cid = null)
{
    wplc_string_check();
    do_action("wplc_hook_output_box_header", $cid);
    do_action("wplc_hook_output_box_body", $cid);
    do_action("wplc_hook_output_box_footer", $cid);
}