Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JCryptKey

Liste de tous les membres

Fonctions membres publiques

 __construct ($type, $private=null, $public=null)
 __get ($name)

Attributs publics

 $private
 $public

Attributs protégés

 $type

Description détaillée

Définition à la ligne 21 du fichier key.php.


Documentation des constructeurs et destructeur

JCryptKey::__construct (   $type,
  $private = null,
  $public = null 
)

Constructor.

Paramètres:
string$typeThe key type.
string$privateThe private key.
string$publicThe public key.
Depuis:
12.1

Définition à la ligne 50 du fichier key.php.

{
// Set the key type.
$this->type = (string) $type;
// Set the optional public/private key strings.
$this->private = isset($private) ? (string) $private : null;
$this->public = isset($public) ? (string) $public : null;
}

Documentation des fonctions membres

JCryptKey::__get (   $name)

Magic method to return some protected property values.

Paramètres:
string$nameThe name of the property to return.
Renvoie:
mixed
Depuis:
12.1

Définition à la ligne 69 du fichier key.php.

{
if ($name == 'type')
{
return $this->type;
}
else
{
trigger_error('Cannot access property ' . __CLASS__ . '::' . $name, E_USER_WARNING);
}
}

Documentation des données membres

JCryptKey::$private

Définition à la ligne 27 du fichier key.php.

JCryptKey::$public

Définition à la ligne 33 du fichier key.php.

JCryptKey::$type
protected

Définition à la ligne 39 du fichier key.php.


La documentation de cette classe a été générée à partir du fichier suivant :