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; }
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'] = ""; }
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"; } }
function __construct() { parent::__construct("Robot Interface", true, 'robot'); Framework::sensitive_action(); }
function __construct() { parent::__construct("Help", false, "index"); }
function __construct() { parent::__construct("Attribute mapping", true, "attributes"); }
function __construct() { parent::__construct("IdP Select", false, "disco"); $this->mapMode = true; }
function __construct() { parent::__construct("Upload CSR", true, "processcsr"); }
public function __construct() { parent::__construct("Logout", false, "index"); }
function __construct() { parent::__construct("Admin", true, "admin"); }
function __construct() { parent::__construct("Confirm AUP", true, "processcsr"); }
function __construct() { parent::__construct("Stylist", true, 'stylist'); }
function __construct() { parent::__construct("About Confusa", false, "credits"); }
function __construct() { parent::__construct("Select Email", true, "processcsr"); Framework::sensitive_action(); }
function __construct() { parent::__construct("About NREN", false, "index"); }
function __construct() { parent::__construct("Revoke Certificate(s)", true, "revocation"); Framework::sensitive_action(); }
public function __construct() { parent::__construct("Download Certificates", true, "download"); Framework::sensitive_action(); }
function __construct() { parent::__construct("Receive CSR", true, "processcsr"); Framework::sensitive_action(); }
function __construct() { parent::__construct("Admin", true, "accountant"); }
function __construct() { parent::__construct("Portal Config", true, 'portal_config'); }