Пример #1
0
 function __construct()
 {
     parent::__construct("NREN/subscriber settings", true, "contactinfo");
     $available_languages = Config::get_config('language.available');
     $this->full_names = Translator::getFullNamesForISOCodes($available_languages);
     $this->form_data['contact_email'] = "";
     $this->form_data['contact_phone'] = "";
     $this->form_data['sanitizedCertPhone'] = "";
     $this->form_data['sanitizedCertEmail'] = "";
     $this->form_data['sanitizedURL'] = "";
     $this->form_data['sanitizedWAYF'] = "";
     $this->form_data['enable_email'] = "";
     $this->form_data['cert_validity'] = "";
     $this->validation_error = false;
 }
Пример #2
0
 function __construct()
 {
     parent::__construct("Admin", true, "nrenadmin");
     $this->form_data = array();
     $this->form_data['db_name'] = "";
     $this->form_data['dn_name'] = "";
     $this->form_data['subscr_email'] = "";
     $this->form_data['subscr_phone'] = "";
     $this->form_data['subscr_responsible_name'] = "";
     $this->form_data['subscr_responsible_email'] = "";
     $this->form_data['subscr_comment'] = "";
     $this->form_data['subscr_help_url'] = "";
     $this->form_data['subscr_help_email'] = "";
     $this->form_data['eppnAttr'] = "";
 }
Пример #3
0
 function __construct()
 {
     parent::__construct("Root Certificate(s)", false, "rootcert");
     if (Config::get_config('ca_mode') == CA_COMODO) {
         if (Config::get_config('cert_product') == PRD_ESCIENCE) {
             $this->cert_path = tempnam("/tmp/", "tcs-escience-ca.pem.");
             $this->crl_path = tempnam("/tmp/", "tcs-escience-crl.crl.");
             $this->cert_url = ConfusaConstants::$CAPI_ESCIENCE_ROOT_CERT;
             $this->crl_url = ConfusaConstants::$CAPI_ESCIENCE_CRL;
         } else {
             if (Config::get_config('cert_product') == PRD_PERSONAL) {
                 $this->cert_path = tempnam("/tmp/", "tcs-personal-ca.pem.");
                 $this->crl_path = tempnam("/tmp/", "tcs-personal-crl.crl.");
                 $this->cert_url = ConfusaConstants::$CAPI_PERSONAL_ROOT_CERT;
                 $this->crl_url = ConfusaConstants::$CAPI_PERSONAL_CRL;
             }
         }
     } else {
         $this->cert_path = Config::get_config('install_path') . Config::get_config('ca_cert_base_path') . Config::get_config('ca_cert_path') . Config::get_config('ca_cert_name');
         $this->crl_path = ConfusaConstants::$OPENSSL_CRL_FILE;
         $this->cert_url = "?link=cacert";
         $this->crl_url = "?link=crl";
     }
 }
Пример #4
0
 function __construct()
 {
     parent::__construct("Robot Interface", true, 'robot');
     Framework::sensitive_action();
 }
Пример #5
0
 function __construct()
 {
     parent::__construct("Help", false, "index");
 }
Пример #6
0
 function __construct()
 {
     parent::__construct("Attribute mapping", true, "attributes");
 }
Пример #7
0
 function __construct()
 {
     parent::__construct("IdP Select", false, "disco");
     $this->mapMode = true;
 }
Пример #8
0
 function __construct()
 {
     parent::__construct("Upload CSR", true, "processcsr");
 }
Пример #9
0
 public function __construct()
 {
     parent::__construct("Logout", false, "index");
 }
Пример #10
0
 function __construct()
 {
     parent::__construct("Admin", true, "admin");
 }
Пример #11
0
 function __construct()
 {
     parent::__construct("Confirm AUP", true, "processcsr");
 }
Пример #12
0
 function __construct()
 {
     parent::__construct("Stylist", true, 'stylist');
 }
Пример #13
0
 function __construct()
 {
     parent::__construct("About Confusa", false, "credits");
 }
Пример #14
0
 function __construct()
 {
     parent::__construct("Select Email", true, "processcsr");
     Framework::sensitive_action();
 }
Пример #15
0
 function __construct()
 {
     parent::__construct("About NREN", false, "index");
 }
Пример #16
0
 function __construct()
 {
     parent::__construct("Revoke Certificate(s)", true, "revocation");
     Framework::sensitive_action();
 }
Пример #17
0
 public function __construct()
 {
     parent::__construct("Download Certificates", true, "download");
     Framework::sensitive_action();
 }
Пример #18
0
 function __construct()
 {
     parent::__construct("Receive CSR", true, "processcsr");
     Framework::sensitive_action();
 }
Пример #19
0
 function __construct()
 {
     parent::__construct("Admin", true, "accountant");
 }
Пример #20
0
 function __construct()
 {
     parent::__construct("Portal Config", true, 'portal_config');
 }