Subversion Repositories oidplus

Rev

Rev 1116 | Rev 1136 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1116 Rev 1130
Line 168... Line 168...
168
        public function tree(array &$json, string $ra_email=null, bool $nonjs=false, string $req_goto=''): bool {
168
        public function tree(array &$json, string $ra_email=null, bool $nonjs=false, string $req_goto=''): bool {
169
                return false;
169
                return false;
170
        }
170
        }
171
 
171
 
172
        /**
172
        /**
173
         * @param $email
173
         * @param string $email
174
         * @return array|string|string[]|null
174
         * @return string
175
         * @throws OIDplusException
175
         * @throws OIDplusException
176
         */
176
         */
177
        public static function showRAInfo($email) {
177
        public static function showRAInfo(string $email): string {
178
                $out = '';
178
                $out = '';
179
 
179
 
180
                if (empty($email)) {
180
                if (empty($email)) {
181
                        return '<p>'._L('The superior RA did not define a RA for this OID.').'</p>';
181
                        return '<p>'._L('The superior RA did not define a RA for this OID.').'</p>';
182
                }
182
                }