');
}
// add options menu
include(dirname(__FILE__).'/options.php');
$persistent_option = get_option('atbar_persistent');
if($persistent_option == "true") {
add_action('wp_head', 'persistentlaunch');
function persistentlaunch() {
$persistenttoolbar = file_get_contents(dirname(__FILE__).'/atbar-launcher.js');
echo ('');
}
}
else {
// adds toolbar launcher
add_action('wp_head', 'toolbarlauncher');
function toolbarlauncher() {
$toolbar = addslashes(file_get_contents(dirname(__FILE__).'/atbar-launcher.php'));
echo ('');
}
}
?>