Lines Matching refs:bundle
405 function ut_resourcebundle_create( $locale, $bundle, $fallback=true )
409 return new ResourceBundle($locale, $bundle, $fallback);
414 return resourcebundle_create($locale, $bundle, $fallback);
417 function ut_resourcebundle_count($bundle )
419 return $GLOBALS['oo-mode'] ? $bundle->count():resourcebundle_count($bundle);
421 function ut_resourcebundle_locales($bundle )
423 … return $GLOBALS['oo-mode'] ? ResourceBundle::getLocales($bundle):resourcebundle_locales($bundle);
425 function ut_resourcebundle_get($bundle, $idx )
427 return $GLOBALS['oo-mode'] ? $bundle->get($idx):resourcebundle_get($bundle, $idx);
429 function ut_resourcebundle_get_error_code($bundle )
431 return $GLOBALS['oo-mode'] ? $bundle->getErrorCode():resourcebundle_get_error_code($bundle);
433 function ut_resourcebundle_get_error_message($bundle )
435 … return $GLOBALS['oo-mode'] ? $bundle->getErrorMessage():resourcebundle_get_error_message($bundle);