Subversion Repositories oidplus

Rev

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

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