Пример #1
0
 public function __construct()
 {
     parent::__construct("Download Certificates", true, "download");
     Framework::sensitive_action();
 }
Пример #2
0
 function __construct()
 {
     parent::__construct("Robot Interface", true, 'robot');
     Framework::sensitive_action();
 }
Пример #3
0
 function __construct()
 {
     parent::__construct("Receive CSR", true, "processcsr");
     Framework::sensitive_action();
 }
Пример #4
0
 function __construct()
 {
     parent::__construct("Select Email", true, "processcsr");
     Framework::sensitive_action();
 }
Пример #5
0
 /**
  * sensitive_action() - make sure that the user is recently AuthN
  *
  * Some actions are more sensitive than others. This function will
  * notify the framework that the user should be AuthN recently. The
  * limit is configurable.
  *
  * @param	void
  * @return	void
  * @access	public
  * @static
  */
 public static function sensitive_action()
 {
     Framework::$sensitive_action = true;
 }
Пример #6
0
 function __construct()
 {
     parent::__construct("Revoke Certificate(s)", true, "revocation");
     Framework::sensitive_action();
 }