Subversion Repositories oidplus

Rev

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

Rev 1220 Rev 1430
Line 212... Line 212...
212
         * @throws OIDplusConfigInitializationException
212
         * @throws OIDplusConfigInitializationException
213
         */
213
         */
214
        protected function doGetSlang(bool $mustExist=true)/*: ?OIDplusSqlSlangPlugin*/ {
214
        protected function doGetSlang(bool $mustExist=true)/*: ?OIDplusSqlSlangPlugin*/ {
215
                $slang = OIDplus::getSqlSlangPlugin('oracle');
215
                $slang = OIDplus::getSqlSlangPlugin('oracle');
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 GIT/SVN snapshot or OIDplus archive file.','oracle'));
218
                }
218
                }
219
                return $slang;
219
                return $slang;
220
        }
220
        }
221
 
221
 
222
        /**
222
        /**