コード例 #1
0
 public function __construct()
 {
     parent::__construct("Download Certificates", true, "download");
     Framework::sensitive_action();
 }
コード例 #2
0
ファイル: robot.php プロジェクト: henrikau/confusa
 function __construct()
 {
     parent::__construct("Robot Interface", true, 'robot');
     Framework::sensitive_action();
 }
コード例 #3
0
ファイル: receive_csr.php プロジェクト: henrikau/confusa
 function __construct()
 {
     parent::__construct("Receive CSR", true, "processcsr");
     Framework::sensitive_action();
 }
コード例 #4
0
ファイル: select_email.php プロジェクト: henrikau/confusa
 function __construct()
 {
     parent::__construct("Select Email", true, "processcsr");
     Framework::sensitive_action();
 }
コード例 #5
0
ファイル: Framework.php プロジェクト: henrikau/confusa
 /**
  * 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();
 }