Subversion Repositories oidplus

Rev

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

Rev 1316 Rev 1430
Line 227... Line 227...
227
         * @throws OIDplusConfigInitializationException
227
         * @throws OIDplusConfigInitializationException
228
         */
228
         */
229
        protected function doGetSlang(bool $mustExist=true)/*: ?OIDplusSqlSlangPlugin*/ {
229
        protected function doGetSlang(bool $mustExist=true)/*: ?OIDplusSqlSlangPlugin*/ {
230
                $slang = OIDplus::getSqlSlangPlugin('sqlite');
230
                $slang = OIDplus::getSqlSlangPlugin('sqlite');
231
                if (is_null($slang)) {
231
                if (is_null($slang)) {
232
                        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.','sqlite'));
232
                        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.','sqlite'));
233
                }
233
                }
234
                return $slang;
234
                return $slang;
235
        }
235
        }
236
 
236
 
237
        /**
237
        /**