Subversion Repositories oidplus

Rev

Rev 1316 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1316 Rev 1430
Line 278... Line 278...
278
         * @throws OIDplusConfigInitializationException
278
         * @throws OIDplusConfigInitializationException
279
         */
279
         */
280
        protected function doGetSlang(bool $mustExist=true)/*: ?OIDplusSqlSlangPlugin*/ {
280
        protected function doGetSlang(bool $mustExist=true)/*: ?OIDplusSqlSlangPlugin*/ {
281
                $slang = OIDplus::getSqlSlangPlugin('mysql');
281
                $slang = OIDplus::getSqlSlangPlugin('mysql');
282
                if (is_null($slang)) {
282
                if (is_null($slang)) {
283
                        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.','mysql'));
283
                        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.','mysql'));
284
                }
284
                }
285
                return $slang;
285
                return $slang;
286
        }
286
        }
287
 
287
 
288
        /**
288
        /**