parent
b40027b6c7
commit
e6dee9fe89
|
@ -11,12 +11,6 @@ use Icinga\Web\Form;
|
||||||
*/
|
*/
|
||||||
class LoginForm extends Form
|
class LoginForm extends Form
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
* Disable CSRF protection
|
|
||||||
* @var bool
|
|
||||||
*/
|
|
||||||
protected $tokenDisabled = true;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface how the form should be created
|
* Interface how the form should be created
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -10,6 +10,7 @@ use Zend_Config;
|
||||||
use Zend_Form_Element_Submit;
|
use Zend_Form_Element_Submit;
|
||||||
use Zend_Form_Element_Reset;
|
use Zend_Form_Element_Reset;
|
||||||
use Zend_View_Interface;
|
use Zend_View_Interface;
|
||||||
|
use Icinga\Web\Session;
|
||||||
use Icinga\Web\Form\Element\Note;
|
use Icinga\Web\Form\Element\Note;
|
||||||
use Icinga\Exception\ProgrammingError;
|
use Icinga\Exception\ProgrammingError;
|
||||||
use Icinga\Web\Form\Decorator\HelpText;
|
use Icinga\Web\Form\Decorator\HelpText;
|
||||||
|
@ -112,7 +113,7 @@ class Form extends Zend_Form
|
||||||
public function getSessionId()
|
public function getSessionId()
|
||||||
{
|
{
|
||||||
if (!$this->sessionId) {
|
if (!$this->sessionId) {
|
||||||
$this->sessionId = session_id();
|
$this->sessionId = Session::getSession()->getId();
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->sessionId;
|
return $this->sessionId;
|
||||||
|
|
|
@ -191,6 +191,15 @@ class PhpSession extends Session
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Session::getId()
|
||||||
|
*/
|
||||||
|
public function getId()
|
||||||
|
{
|
||||||
|
$this->open(); // Make sure we actually get a id
|
||||||
|
return session_id();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Assign a new sessionId to the currently active session
|
* Assign a new sessionId to the currently active session
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -54,6 +54,13 @@ abstract class Session extends SessionNamespace
|
||||||
*/
|
*/
|
||||||
abstract public function refreshId();
|
abstract public function refreshId();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the id of this session
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
abstract public function getId();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get or create a new session namespace
|
* Get or create a new session namespace
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue