Subversion Repositories oidplus

Rev

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

Rev 1219 Rev 1220
Line 216... Line 216...
216
                if (is_null($slang)) {
216
                if (is_null($slang)) {
217
                        throw new OIDplusConfigInitializationException(_L('SQL-Slang plugin "%1" is missing. Please check if it exists in the directory "plugin/sqlSlang". If it is not existing, please recover it from an SVN snapshot or OIDplus TAR.GZ file.','oracle'));
217
                        throw new OIDplusConfigInitializationException(_L('SQL-Slang plugin "%1" is missing. Please check if it exists in the directory "plugin/sqlSlang". If it is not existing, please recover it from an SVN snapshot or OIDplus TAR.GZ file.','oracle'));
218
                }
218
                }
219
                return $slang;
219
                return $slang;
220
        }
220
        }
-
 
221
 
-
 
222
        /**
-
 
223
         * @return array
-
 
224
         */
-
 
225
        public function getExtendedInfo(): array {
-
 
226
                $conn_str = OIDplus::baseConfig()->getValue('OCI_CONN_STR', 'localhost/XE');
-
 
227
                return array(
-
 
228
                        _L('Connection String') => $conn_str
-
 
229
                );
-
 
230
        }
221
}
231
}