IMP_Prefs_Identity::getAllSignatures PHP Méthode

getAllSignatures() public méthode

Returns an array with the signatures from all identities
public getAllSignatures ( string $type = 'text' ) : array
$type string Either 'text' or 'html'.
Résultat array The array with all the signatures.
    public function getAllSignatures($type = 'text')
    {
        foreach (array_keys($this->_identities) as $key) {
            $list[$key] = $this->getSignature($type, $key);
        }
        return $list;
    }