";
}
?>
".get_string("domxml_warn", "block_pageone")."";
/**
* This method tries to automatically install/fix the callback settings on the PageOne server when it detects that they are missing
**/
function pageone_fix_callbacks()
{
$callbacks=pageone_get_callback_list();
if (count($callbacks)>0)
{
print_string("failed", "block_pageone");
return false;
}
pageone_set_callback();
$ok=pageone_check_callbacks();
if ($ok)
print_string("ok");
else
print_string("failed", "block_pageone");
return $ok;
}
?>