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