fnp
/
piwik-CASLogin.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Piwik 2.8.0 compatibility: Added missing abstract methods to Auth.
[piwik-CASLogin.git]
/
Auth.php
diff --git
a/Auth.php
b/Auth.php
index
c2d9446
..
799d38a
100644
(file)
--- a/
Auth.php
+++ b/
Auth.php
@@
-134,11
+134,17
@@
class Auth implements \Piwik\Auth
{
$this->login = $login;
}
{
$this->login = $login;
}
+ public function getLogin() {
+ return $this->login;
+ }
public function setTokenAuth($token_auth)
{
$this->token_auth = $token_auth;
}
public function setTokenAuth($token_auth)
{
$this->token_auth = $token_auth;
}
+ public function getTokenAuthSecret() {
+ return $this->token_auth;
+ }
/**
* This method is used to inject user into Piwik's tables.
/**
* This method is used to inject user into Piwik's tables.
@@
-197,6
+203,9
@@
class Auth implements \Piwik\Auth
)
);
}
)
);
}
-
+
+ // Those methods are required by Piwik API.
+ public function setPassword($password) {}
+ public function setPasswordHash($passwordHash) {}
}
}