Example #1
0
function authenticate($username = "", $password = "")
{
    $auth = new Magmi_Auth($username, $password);
    return $auth->authenticate();
}
Example #2
0
function authenticate($username = "", $password = "")
{
    require "../inc/magmi_auth.php";
    $auth = new Magmi_Auth($username, $password);
    return $auth->authenticate();
}